Skip to content

Commit 940df1b

Browse files
authored
Merge pull request #1 from 0xProject/fix/PLA-1666/bump-actions-node24
fix: bump github actions to node24 runtimes
2 parents c7105d8 + aadea9a commit 940df1b

6 files changed

Lines changed: 23 additions & 23 deletions

File tree

.github/workflows/deploy.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,26 @@ jobs:
1313
packages: write
1414

1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
with:
1818
# 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.
1919
fetch-depth: '0'
2020

21-
- uses: docker/login-action@v3
21+
- uses: docker/login-action@v4
2222
with:
2323
registry: ghcr.io
2424
username: ${{ github.actor }}
2525
password: ${{ secrets.GITHUB_TOKEN }}
2626

2727
- name: Services image metadata
2828
id: meta_services
29-
uses: docker/metadata-action@v5
29+
uses: docker/metadata-action@v6
3030
with:
3131
images: ghcr.io/${{ github.repository }}
3232
labels: |
3333
org.opencontainers.image.licenses=GPL-3.0-or-later
3434
- name: Services image build
35-
uses: docker/build-push-action@v6
35+
uses: docker/build-push-action@v7
3636
with:
3737
context: .
3838
file: Dockerfile
@@ -42,13 +42,13 @@ jobs:
4242

4343
- name: Migration image metadata
4444
id: meta_migration
45-
uses: docker/metadata-action@v5
45+
uses: docker/metadata-action@v6
4646
with:
4747
images: ghcr.io/${{ github.repository }}-migration
4848
labels: |
4949
org.opencontainers.image.licenses=GPL-3.0-or-later
5050
- name: Migration image build
51-
uses: docker/build-push-action@v6
51+
uses: docker/build-push-action@v7
5252
with:
5353
context: .
5454
file: Dockerfile

.github/workflows/hotfix.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Check out
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
with:
2020
token: "${{ secrets.HOTFIX_ACTION_TOKEN }}"
2121
fetch-depth: 0
@@ -66,7 +66,7 @@ jobs:
6666
git push origin "${{ steps.bump.outputs.tag }}"
6767
6868
- name: "Create hotfix release"
69-
uses: actions/github-script@v6
69+
uses: actions/github-script@v9
7070
with:
7171
github-token: "${{ secrets.HOTFIX_ACTION_TOKEN }}"
7272
script: |

.github/workflows/playground-check.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
swap-storage: false
2525

2626
- name: Checkout code
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v6
2828

2929
- name: Install dependency
3030
run: sudo apt-get -qq update && sudo apt-get -y -q install curl jq
@@ -69,15 +69,15 @@ jobs:
6969
- name: Upload logs to GitHub
7070
if: failure()
7171
id: artifact-upload-step
72-
uses: actions/upload-artifact@v4
72+
uses: actions/upload-artifact@v7
7373
with:
7474
name: logs.tgz
7575
path: ./logs.tgz
7676

7777
- name: Slack notification on failure
7878
if: failure()
7979
id: slack
80-
uses: slackapi/slack-github-action@v1.27.0
80+
uses: slackapi/slack-github-action@v3
8181
with:
8282
payload: |
8383
{

.github/workflows/pull-request.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
timeout-minutes: 60
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414
with:
1515
ref: ${{ github.event.pull_request.head.sha }}
1616
- run: rustup toolchain install stable --profile minimal
@@ -32,7 +32,7 @@ jobs:
3232
nitpicker:
3333
runs-on: ubuntu-latest
3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v6
3636
with:
3737
ref: ${{ github.event.pull_request.head.sha }}
3838
- uses: ethanis/nitpicker@v1
@@ -44,7 +44,7 @@ jobs:
4444
timeout-minutes: 60
4545
runs-on: ubuntu-latest
4646
steps:
47-
- uses: actions/checkout@v4
47+
- uses: actions/checkout@v6
4848
with:
4949
ref: ${{ github.event.pull_request.head.sha }}
5050
- run: rustup toolchain install stable --profile minimal
@@ -60,7 +60,7 @@ jobs:
6060
CARGO_PROFILE_TEST_DEBUG: 0
6161
CARGO_TERM_COLOR: always
6262
steps:
63-
- uses: actions/checkout@v4
63+
- uses: actions/checkout@v6
6464
with:
6565
ref: ${{ github.event.pull_request.head.sha }}
6666
- run: rustup toolchain install stable --profile minimal
@@ -78,7 +78,7 @@ jobs:
7878
CARGO_PROFILE_TEST_DEBUG: 0
7979
CARGO_TERM_COLOR: always
8080
steps:
81-
- uses: actions/checkout@v4
81+
- uses: actions/checkout@v6
8282
with:
8383
ref: ${{ github.event.pull_request.head.sha }}
8484
- run: rustup toolchain install stable --profile minimal
@@ -103,7 +103,7 @@ jobs:
103103
CARGO_TERM_COLOR: always
104104
TOML_TRACE_ERROR: 1
105105
steps:
106-
- uses: actions/checkout@v4
106+
- uses: actions/checkout@v6
107107
with:
108108
ref: ${{ github.event.pull_request.head.sha }}
109109
- run: rustup toolchain install stable --profile minimal
@@ -135,7 +135,7 @@ jobs:
135135
FORK_URL_GNOSIS: ${{ secrets.FORK_URL_GNOSIS }}
136136
TOML_TRACE_ERROR: 1
137137
steps:
138-
- uses: actions/checkout@v4
138+
- uses: actions/checkout@v6
139139
with:
140140
ref: ${{ github.event.pull_request.head.sha }}
141141
- run: rustup toolchain install stable --profile minimal
@@ -165,7 +165,7 @@ jobs:
165165
CARGO_TERM_COLOR: always
166166
TOML_TRACE_ERROR: 1
167167
steps:
168-
- uses: actions/checkout@v4
168+
- uses: actions/checkout@v6
169169
with:
170170
ref: ${{ github.event.pull_request.head.sha }}
171171
- run: rustup toolchain install stable --profile minimal
@@ -181,7 +181,7 @@ jobs:
181181
timeout-minutes: 60
182182
runs-on: ubuntu-latest
183183
steps:
184-
- uses: actions/checkout@v4
184+
- uses: actions/checkout@v6
185185
with:
186186
ref: ${{ github.event.pull_request.head.sha }}
187187
- run: npm install @apidevtools/swagger-cli @stoplight/spectral-cli
@@ -206,7 +206,7 @@ jobs:
206206
FORK_URL_MAINNET: ${{ secrets.FORK_URL_MAINNET }}
207207
FORK_URL_GNOSIS: ${{ secrets.FORK_URL_GNOSIS }}
208208
steps:
209-
- uses: actions/checkout@v4
209+
- uses: actions/checkout@v6
210210
with:
211211
ref: ${{ github.event.pull_request.head.sha }}
212212
- run: rustup toolchain install stable --profile minimal

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515
with:
1616
fetch-depth: 0 # Fetch all history for all branches and tags
1717
# Requires "Read and Write access to code" permission

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Close stale pull requests
10-
uses: actions/stale@v5
10+
uses: actions/stale@v10
1111
with:
1212
days-before-stale: 7
1313
days-before-issue-stale: 60

0 commit comments

Comments
 (0)