Skip to content

Commit 2186db2

Browse files
authored
Update GitHub workflow actions to v4 for cache compatibility (#4030)
* Update GitHub workflow actions to v4 for cache compatibility * update all new actions to v4 * set v4 action as per GH new update
1 parent fd01e5a commit 2186db2

13 files changed

+21
-21
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2424

2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v4
2727
- name: Use Node.js ${{ matrix.node-version }}
28-
uses: actions/setup-node@v2
28+
uses: actions/setup-node@v4
2929
with:
3030
node-version: ${{ matrix.node-version }}
3131
cache: "yarn"

.github/workflows/grid_client_nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
ref: refs/tags/v2.6.3
4242

4343
- name: Set up node 18
44-
uses: actions/setup-node@v3
44+
uses: actions/setup-node@v4
4545
with:
4646
node-version: 18
4747
cache: "yarn"

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2323

2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v4
2626
- name: Use Node.js ${{ matrix.node-version }}
27-
uses: actions/setup-node@v2
27+
uses: actions/setup-node@v4
2828
with:
2929
node-version: ${{ matrix.node-version }}
3030
cache: "yarn"

.github/workflows/mass_deployments.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
ref: refs/tags/v2.7.0-rc1
2424
- name: Set up node 18
25-
uses: actions/setup-node@v3
25+
uses: actions/setup-node@v4
2626
with:
2727
node-version: 18
2828
cache: "yarn"

.github/workflows/playground_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2929

3030
steps:
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v4
3232

3333
- name: Setup Node.js ${{ matrix.node-version }}
34-
uses: actions/setup-node@v2
34+
uses: actions/setup-node@v4
3535
with:
3636
node-version: ${{ matrix.node-version }}
3737
cache: "yarn"

.github/workflows/playground_cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
3030

3131
steps:
32-
- uses: actions/checkout@v2
32+
- uses: actions/checkout@v4
3333

3434
- name: Setup Node.js ${{ matrix.node-version }}
35-
uses: actions/setup-node@v2
35+
uses: actions/setup-node@v4
3636
with:
3737
node-version: ${{ matrix.node-version }}
3838
cache: "yarn"

.github/workflows/playground_docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
packages: write
1212
steps:
1313
- name: Checkout the repo
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
- name: Log in to the Container registry
1616
uses: docker/login-action@v2.1.0
1717
with:

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
env:
1919
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
- name: Use Node.js ${{ matrix.node-version }}
23-
uses: actions/setup-node@v2
23+
uses: actions/setup-node@v4
2424
with:
2525
node-version: ${{ matrix.node-version }}
2626
registry-url: "https://registry.npmjs.org"
@@ -48,7 +48,7 @@ jobs:
4848
packages: write
4949
steps:
5050
- name: Checkout the repo
51-
uses: actions/checkout@v3
51+
uses: actions/checkout@v4
5252
- name: Log in to the Container registry
5353
uses: docker/login-action@v2.1.0
5454
with:
@@ -80,7 +80,7 @@ jobs:
8080
packages: write
8181
steps:
8282
- name: Checkout the repo
83-
uses: actions/checkout@v3
83+
uses: actions/checkout@v4
8484
- name: Log in to the Container registry
8585
uses: docker/login-action@v2.1.0
8686
with:

.github/workflows/publish_arm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
return run.data.head_branch;
2929
3030
- name: Checkout the repo
31-
uses: actions/checkout@v3
31+
uses: actions/checkout@v4
3232
with:
3333
ref: ${{ steps.tag.outputs.result }}
3434

.github/workflows/stats_build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2525

2626
steps:
27-
- uses: actions/checkout@v2
27+
- uses: actions/checkout@v4
2828

2929
- name: Setup Node.js ${{ matrix.node-version }}
30-
uses: actions/setup-node@v2
30+
uses: actions/setup-node@v4
3131
with:
3232
node-version: ${{ matrix.node-version }}
3333
cache: "yarn"

.github/workflows/stats_docker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
packages: write
1313
steps:
1414
- name: Checkout the repo
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616
- name: Log in to the Container registry
1717
uses: docker/login-action@v2.1.0
1818
with:

.github/workflows/tft_solana_docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
packages: write
1212
steps:
1313
- name: Checkout the repo
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
- name: Log in to the Container registry
1616
uses: docker/login-action@v2.1.0
1717
with:

.github/workflows/yarn_audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
audit-and-open-issue:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v4
2020
- name: Yarn Audit
2121
uses: pragatheeswarans/yarn-audit-action@v1.0.0
2222
with:

0 commit comments

Comments
 (0)