Skip to content

Commit cf3d930

Browse files
committed
Update deprecated GitHub Actions to latest versions
Updated all workflows to use non-deprecated action versions: - actions/checkout@v2 -> actions/checkout@v4 - actions/setup-node@v1 -> actions/setup-node@v4 - actions/upload-artifact@v2 -> actions/upload-artifact@v4 This removes deprecation warnings in GitHub Actions.
1 parent ec7499e commit cf3d930

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/launcher.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,20 @@ jobs:
2727
arch: "--x64"
2828

2929
steps:
30-
- uses: actions/checkout@v2
30+
- uses: actions/checkout@v4
3131
with:
3232
# This should fix git rev-list --count HEAD
3333
# https://stackoverflow.com/a/65056108
3434
fetch-depth: 0
3535
path: repo-folder
3636

37-
- uses: actions/checkout@v2
37+
- uses: actions/checkout@v4
3838
with:
3939
repository: gajop/spring-launcher
4040
path: spring-launcher
4141

4242
- name: Setup NodeJs
43-
uses: actions/setup-node@v1
43+
uses: actions/setup-node@v4
4444
with:
4545
node-version: '17.x'
4646

.github/workflows/luacheck.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

99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
1111
with:
1212
submodules: 'true'
1313

.github/workflows/smoke-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout code
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v4
2323
with:
2424
submodules: 'true'
2525

@@ -199,7 +199,7 @@ jobs:
199199
200200
- name: Upload test artifacts on failure
201201
if: failure()
202-
uses: actions/upload-artifact@v2
202+
uses: actions/upload-artifact@v4
203203
with:
204204
name: smoke-test-logs
205205
path: |

0 commit comments

Comments
 (0)