Skip to content

Commit

Permalink
fix(CI): Deprecation issues (#2605)
Browse files Browse the repository at this point in the history
* fix(CI): Deprecation issues

* fix: missing
  • Loading branch information
workgroupengineering committed Aug 5, 2024
1 parent 0275649 commit bf0a49d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Disable Windows Defender
run: Set-MpPreference -DisableRealtimeMonitoring $true
shell: powershell
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run task 'build'
shell: cmd
run: ./build.cmd build
Expand All @@ -37,15 +37,15 @@ jobs:
- name: Disable Windows Defender
run: Set-MpPreference -DisableRealtimeMonitoring $true
shell: powershell
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run task 'build'
shell: cmd
run: ./build.cmd build
- name: Run task 'in-tests-full'
shell: cmd
run: ./build.cmd in-tests-full -e
- name: Upload test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: test-windows-full-trx
Expand All @@ -54,7 +54,7 @@ jobs:
test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Clang
uses: egor-tensin/setup-clang@v1
with:
Expand All @@ -77,7 +77,7 @@ jobs:
- name: Run task 'in-tests-core'
run: ./build.cmd in-tests-core -e
- name: Upload test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: test-linux-trx
Expand All @@ -86,7 +86,7 @@ jobs:
test-macos:
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up node
uses: actions/setup-node@v4
with:
Expand All @@ -102,7 +102,7 @@ jobs:
- name: Run task 'in-tests-core'
run: ./build.cmd in-tests-core -e
- name: Upload test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: test-macos-trx
Expand All @@ -111,7 +111,7 @@ jobs:
test-pack:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Clang
uses: egor-tensin/setup-clang@v1
with:
Expand All @@ -125,8 +125,8 @@ jobs:
spellcheck-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
name: Setup node
with:
node-version: "18"
Expand Down

0 comments on commit bf0a49d

Please sign in to comment.