diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 7558a667ba..1b4347365d 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/deployFreighterApiBeta.yml b/.github/workflows/deployFreighterApiBeta.yml index 1e7290c98d..d888aa6f9b 100644 --- a/.github/workflows/deployFreighterApiBeta.yml +++ b/.github/workflows/deployFreighterApiBeta.yml @@ -16,13 +16,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: release/${{ github.event.inputs.release }} - name: Enable Corepack run: corepack enable - name: Build package - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: 22 - name: Version npm package diff --git a/.github/workflows/deployFreighterApiProduction.yml b/.github/workflows/deployFreighterApiProduction.yml index 6dc1609960..1a9565c835 100644 --- a/.github/workflows/deployFreighterApiProduction.yml +++ b/.github/workflows/deployFreighterApiProduction.yml @@ -12,11 +12,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Enable Corepack run: corepack enable - name: Build package - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: 22 registry-url: "https://registry.npmjs.org" diff --git a/.github/workflows/runSnapshots.yml b/.github/workflows/runSnapshots.yml index 86b2ee1f4d..2d56fb75d0 100644 --- a/.github/workflows/runSnapshots.yml +++ b/.github/workflows/runSnapshots.yml @@ -25,13 +25,13 @@ jobs: timeout-minutes: 20 runs-on: macos-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - run: corepack enable - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v5 with: node-version: 22 - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ github.event.inputs.branch }} - run: yarn diff --git a/.github/workflows/runTests.yml b/.github/workflows/runTests.yml index a0de9bec5f..f163676b31 100644 --- a/.github/workflows/runTests.yml +++ b/.github/workflows/runTests.yml @@ -11,9 +11,9 @@ jobs: timeout-minutes: 45 runs-on: macos-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - run: corepack enable - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v5 with: node-version: 22 - run: yarn diff --git a/.github/workflows/submitBeta.yml b/.github/workflows/submitBeta.yml index e978972600..7dd18b4196 100644 --- a/.github/workflows/submitBeta.yml +++ b/.github/workflows/submitBeta.yml @@ -29,7 +29,7 @@ jobs: gh run cancel ${{ github.run_id }} gh run watch ${{ github.run_id }} - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: release/${{ github.event.inputs.release }} - name: Update manifest-v2.json name @@ -79,7 +79,7 @@ jobs: - name: Enable Corepack run: corepack enable - name: Build extension - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: 22 - run: yarn && yarn build:freighter-api && yarn build:extension:production diff --git a/.github/workflows/submitProduction.yml b/.github/workflows/submitProduction.yml index 5223195810..f42b03cd73 100644 --- a/.github/workflows/submitProduction.yml +++ b/.github/workflows/submitProduction.yml @@ -26,7 +26,7 @@ jobs: gh run cancel ${{ github.run_id }} gh run watch ${{ github.run_id }} - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Update package.json version uses: jossef/action-set-json-field@2a0f7d953b580b828717daf4de7fafc7e4135e97 #v2 with: @@ -55,7 +55,7 @@ jobs: - name: Enable Corepack run: corepack enable - name: Build extension - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: 22 - run: diff --git a/.github/workflows/submitSafari.yml b/.github/workflows/submitSafari.yml index 456d3552c9..217e1c97f9 100644 --- a/.github/workflows/submitSafari.yml +++ b/.github/workflows/submitSafari.yml @@ -15,7 +15,7 @@ jobs: steps: - uses: maxim-lobanov/setup-xcode@v1 - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Update package.json version uses: jossef/action-set-json-field@2a0f7d953b580b828717daf4de7fafc7e4135e97 #v2 with: @@ -56,7 +56,7 @@ jobs: - name: Enable Corepack run: corepack enable - name: Build extension - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: 22 - run: @@ -68,7 +68,7 @@ jobs: xcrun safari-web-extension-converter ./extension/build --project-location $GYM_PROJECT --macos-only - name: Set up ruby env - uses: ruby/setup-ruby@v1.232.0 + uses: ruby/setup-ruby@v1.263.0 with: ruby-version: 2.6.10 bundler-cache: true