Skip to content

Commit 61f38f3

Browse files
authored
ci: Fix missing CI action version. (#239)
1 parent 7d5db55 commit 61f38f3

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717
- name: Setup | Cache Cargo
18-
uses: actions/cache@v3.0.11
18+
uses: actions/cache@v4
1919
with:
2020
path: |
2121
~/.cargo/bin/
@@ -47,7 +47,7 @@ jobs:
4747
id: yarn-cache-dir-path
4848
run: echo "::set-output name=dir::$(yarn cache dir)"
4949
- name: Setup | Cache Cargo
50-
uses: actions/cache@v3.0.11
50+
uses: actions/cache@v4
5151
with:
5252
path: |
5353
~/.cargo/bin/
@@ -73,7 +73,7 @@ jobs:
7373
steps:
7474
- uses: actions/checkout@v4
7575
- name: Setup | Cache Cargo
76-
uses: actions/cache@v3.0.11
76+
uses: actions/cache@v4
7777
with:
7878
path: |
7979
~/.cargo/bin/
@@ -98,7 +98,7 @@ jobs:
9898
steps:
9999
- uses: actions/checkout@v4
100100
- name: Setup | Cache Cargo
101-
uses: actions/cache@v3.0.11
101+
uses: actions/cache@v4
102102
with:
103103
path: |
104104
~/.cargo/bin/
@@ -127,7 +127,7 @@ jobs:
127127
steps:
128128
- uses: actions/checkout@v4
129129
- name: Setup | Cache Cargo
130-
uses: actions/cache@v3.0.11
130+
uses: actions/cache@v4
131131
with:
132132
path: |
133133
~/.cargo/bin/

.github/workflows/release-node.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
toolchain: stable
7676
target: ${{ matrix.settings.target }}
7777
- name: Cache cargo
78-
uses: actions/cache@v3
78+
uses: actions/cache@v4
7979
with:
8080
path: |
8181
~/.cargo/registry/index/
@@ -89,7 +89,7 @@ jobs:
8989
with:
9090
version: 0.11.0
9191
- name: Cache NPM dependencies
92-
uses: actions/cache@v3
92+
uses: actions/cache@v4
9393
with:
9494
path: autocorrect-node/.yarn/cache
9595
key: npm-cache-build-${{ matrix.settings.target }}-node@16
@@ -124,7 +124,7 @@ jobs:
124124
if: ${{ !matrix.settings.docker }}
125125
shell: bash
126126
- name: Upload artifact
127-
uses: actions/upload-artifact@v3
127+
uses: actions/upload-artifact@v4
128128
with:
129129
name: bindings-${{ matrix.settings.target }}
130130
path: autocorrect-node/${{ env.APP_NAME }}.*.node
@@ -247,7 +247,7 @@ jobs:
247247
cache: yarn
248248
cache-dependency-path: "autocorrect-node/yarn.lock"
249249
- name: Cache NPM dependencies
250-
uses: actions/cache@v3
250+
uses: actions/cache@v4
251251
with:
252252
path: autocorrect-node/.yarn/cache
253253
key: npm-cache-ubuntu-latest-publish

.github/workflows/release-wasm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
# Cache files between builds
1717
- name: Setup | Cache Cargo
18-
uses: actions/cache@v3.0.11
18+
uses: actions/cache@v4
1919
with:
2020
path: |
2121
~/.cargo/bin/

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666

6767
# Cache files between builds
6868
- name: Setup | Cache Cargo
69-
uses: actions/cache@v3.0.11
69+
uses: actions/cache@v4
7070
with:
7171
path: |
7272
~/.cargo/bin/

0 commit comments

Comments
 (0)