Skip to content

Commit bf0a49d

Browse files
fix(CI): Deprecation issues (#2605)
* fix(CI): Deprecation issues * fix: missing
1 parent 0275649 commit bf0a49d

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/run-tests.yaml

+10-10
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Disable Windows Defender
1818
run: Set-MpPreference -DisableRealtimeMonitoring $true
1919
shell: powershell
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
- name: Run task 'build'
2222
shell: cmd
2323
run: ./build.cmd build
@@ -37,15 +37,15 @@ jobs:
3737
- name: Disable Windows Defender
3838
run: Set-MpPreference -DisableRealtimeMonitoring $true
3939
shell: powershell
40-
- uses: actions/checkout@v3
40+
- uses: actions/checkout@v4
4141
- name: Run task 'build'
4242
shell: cmd
4343
run: ./build.cmd build
4444
- name: Run task 'in-tests-full'
4545
shell: cmd
4646
run: ./build.cmd in-tests-full -e
4747
- name: Upload test results
48-
uses: actions/upload-artifact@v3
48+
uses: actions/upload-artifact@v4
4949
if: always()
5050
with:
5151
name: test-windows-full-trx
@@ -54,7 +54,7 @@ jobs:
5454
test-linux:
5555
runs-on: ubuntu-latest
5656
steps:
57-
- uses: actions/checkout@v3
57+
- uses: actions/checkout@v4
5858
- name: Set up Clang
5959
uses: egor-tensin/setup-clang@v1
6060
with:
@@ -77,7 +77,7 @@ jobs:
7777
- name: Run task 'in-tests-core'
7878
run: ./build.cmd in-tests-core -e
7979
- name: Upload test results
80-
uses: actions/upload-artifact@v3
80+
uses: actions/upload-artifact@v4
8181
if: always()
8282
with:
8383
name: test-linux-trx
@@ -86,7 +86,7 @@ jobs:
8686
test-macos:
8787
runs-on: macos-13
8888
steps:
89-
- uses: actions/checkout@v3
89+
- uses: actions/checkout@v4
9090
- name: Set up node
9191
uses: actions/setup-node@v4
9292
with:
@@ -102,7 +102,7 @@ jobs:
102102
- name: Run task 'in-tests-core'
103103
run: ./build.cmd in-tests-core -e
104104
- name: Upload test results
105-
uses: actions/upload-artifact@v3
105+
uses: actions/upload-artifact@v4
106106
if: always()
107107
with:
108108
name: test-macos-trx
@@ -111,7 +111,7 @@ jobs:
111111
test-pack:
112112
runs-on: ubuntu-latest
113113
steps:
114-
- uses: actions/checkout@v3
114+
- uses: actions/checkout@v4
115115
- name: Set up Clang
116116
uses: egor-tensin/setup-clang@v1
117117
with:
@@ -125,8 +125,8 @@ jobs:
125125
spellcheck-docs:
126126
runs-on: ubuntu-latest
127127
steps:
128-
- uses: actions/checkout@v3
129-
- uses: actions/setup-node@v3
128+
- uses: actions/checkout@v4
129+
- uses: actions/setup-node@v4
130130
name: Setup node
131131
with:
132132
node-version: "18"

0 commit comments

Comments
 (0)