From 0cbc181dfcac7cd33f9a0ce89f6f0441a1d5c653 Mon Sep 17 00:00:00 2001 From: Talal Ashraf Date: Tue, 30 Jun 2026 13:28:44 -0400 Subject: [PATCH] fix: bump github actions to node24 runtimes --- .github/workflows/deploy.yaml | 8 ++++---- .github/workflows/hotfix.yml | 2 +- .github/workflows/playground-check.yaml | 4 ++-- .github/workflows/pull-request.yaml | 20 ++++++++++---------- .github/workflows/release.yml | 2 +- .github/workflows/stale.yml | 2 +- 6 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index eba6dcb403..176028d4e7 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -13,12 +13,12 @@ jobs: packages: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: # Without this the fetch depth defaults to 1, which only includes the most recent commit. We want to know the full history so that `git describe` can give more information when it is invoked in the orderbook's crate build script. fetch-depth: '0' - - uses: docker/login-action@v3 + - uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.actor }} @@ -32,7 +32,7 @@ jobs: labels: | org.opencontainers.image.licenses=GPL-3.0-or-later - name: Services image build - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: Dockerfile @@ -48,7 +48,7 @@ jobs: labels: | org.opencontainers.image.licenses=GPL-3.0-or-later - name: Migration image build - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: Dockerfile diff --git a/.github/workflows/hotfix.yml b/.github/workflows/hotfix.yml index bd65cd97b7..842245ee8e 100644 --- a/.github/workflows/hotfix.yml +++ b/.github/workflows/hotfix.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: token: "${{ secrets.HOTFIX_ACTION_TOKEN }}" fetch-depth: 0 diff --git a/.github/workflows/playground-check.yaml b/.github/workflows/playground-check.yaml index cdd56d4031..690ab74d72 100644 --- a/.github/workflows/playground-check.yaml +++ b/.github/workflows/playground-check.yaml @@ -24,7 +24,7 @@ jobs: swap-storage: false - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install dependency run: sudo apt-get -qq update && sudo apt-get -y -q install curl jq @@ -69,7 +69,7 @@ jobs: - name: Upload logs to GitHub if: failure() id: artifact-upload-step - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: logs.tgz path: ./logs.tgz diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 3b1fdf0d72..12d34570b2 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -10,7 +10,7 @@ jobs: timeout-minutes: 60 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} - run: rustup toolchain install stable --profile minimal @@ -32,7 +32,7 @@ jobs: nitpicker: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} - uses: ethanis/nitpicker@v1 @@ -44,7 +44,7 @@ jobs: timeout-minutes: 60 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} - run: rustup toolchain install stable --profile minimal @@ -60,7 +60,7 @@ jobs: CARGO_PROFILE_TEST_DEBUG: 0 CARGO_TERM_COLOR: always steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} - run: rustup toolchain install stable --profile minimal @@ -78,7 +78,7 @@ jobs: CARGO_PROFILE_TEST_DEBUG: 0 CARGO_TERM_COLOR: always steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} - run: rustup toolchain install stable --profile minimal @@ -103,7 +103,7 @@ jobs: CARGO_TERM_COLOR: always TOML_TRACE_ERROR: 1 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} - run: rustup toolchain install stable --profile minimal @@ -135,7 +135,7 @@ jobs: FORK_URL_GNOSIS: ${{ secrets.FORK_URL_GNOSIS }} TOML_TRACE_ERROR: 1 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} - run: rustup toolchain install stable --profile minimal @@ -165,7 +165,7 @@ jobs: CARGO_TERM_COLOR: always TOML_TRACE_ERROR: 1 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} - run: rustup toolchain install stable --profile minimal @@ -181,7 +181,7 @@ jobs: timeout-minutes: 60 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} - run: npm install @apidevtools/swagger-cli @stoplight/spectral-cli @@ -206,7 +206,7 @@ jobs: FORK_URL_MAINNET: ${{ secrets.FORK_URL_MAINNET }} FORK_URL_GNOSIS: ${{ secrets.FORK_URL_GNOSIS }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} - run: rustup toolchain install stable --profile minimal diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1a8f4a2dfa..3d48bde883 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 # Fetch all history for all branches and tags # Requires "Read and Write access to code" permission diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 942b4d95b1..8314424629 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Close stale pull requests - uses: actions/stale@v5 + uses: actions/stale@v10 with: days-before-stale: 7 days-before-issue-stale: 60