From 3e50086c723fd61844dbe32feec9e4ecfd3750e0 Mon Sep 17 00:00:00 2001 From: "Charlotte St. John" Date: Thu, 25 Jun 2026 18:25:44 -0500 Subject: [PATCH] ci: migrate runs-on to Twilio runner labels + SHA-pin actions --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a8854f..3b71c9d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,17 +4,17 @@ on: [push] jobs: test-and-build: - runs-on: ubuntu-latest + runs-on: ubuntu-latest-large strategy: matrix: node-version: [20.10.0] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@7c12f8017d5436eb855f1ed4399f037a36fbd9e8 # v2 with: node-version: ${{ matrix.node-version }} @@ -22,7 +22,7 @@ jobs: run: yarn install --frozen-lockfile - name: Run Snyk to check for vulnerabilities - uses: snyk/actions/node@master + uses: snyk/actions/node@8e119fbb6c251787721d34ba683ed48eba792766 # master env: SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} with: @@ -35,7 +35,7 @@ jobs: run: yarn test --coverage - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@0fb7174895f61a3b6b78fc075e0cd60383518dac # v5 with: token: ${{ secrets.CODECOV_TOKEN }} slug: segmentio/fql-ts