Skip to content

Commit 4328255

Browse files
authored
Merge pull request #61 from RobWalt/update-ci
Update github actions versions which caused the following warnings in the github actions tab: ``` The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/cache@v3. For more info: https://github.blog/changelog/202... ```
2 parents 0dec976 + 4b43042 commit 4328255

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
runs-on: ubuntu-latest
1616
timeout-minutes: 60
1717
steps:
18-
- uses: actions/checkout@v3
19-
- uses: actions/cache@v3
18+
- uses: actions/checkout@v4
19+
- uses: actions/cache@v4
2020
with:
2121
path: |
2222
~/.cargo/bin/
@@ -38,8 +38,8 @@ jobs:
3838
clippy:
3939
runs-on: ubuntu-latest
4040
steps:
41-
- uses: actions/checkout@v3
42-
- uses: actions/cache@v3
41+
- uses: actions/checkout@v4
42+
- uses: actions/cache@v4
4343
with:
4444
# cache the build files! see: https://github.com/actions/cache
4545
path: |
@@ -61,8 +61,8 @@ jobs:
6161
rustfmt:
6262
runs-on: ubuntu-latest
6363
steps:
64-
- uses: actions/checkout@v3
65-
- uses: actions/cache@v3
64+
- uses: actions/checkout@v4
65+
- uses: actions/cache@v4
6666
with:
6767
# cache the build files! see: https://github.com/actions/cache
6868
path: |

0 commit comments

Comments
 (0)