Skip to content

Commit

Permalink
Updated GitHub actions to remove the Node.js 16 deprecation warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
apanteleev committed Apr 19, 2024
1 parent 0df986f commit d9c994b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:

steps:
- name: Setup variables
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: core.exportVariable('GITHUB_SHA_SHORT', context.sha.substring(0, 7))

- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

Expand All @@ -37,7 +37,7 @@ jobs:
run: cmake --build ${{github.workspace}}/build-win32 --config ${{env.BUILD_TYPE}}

- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: q2rtx-windows-${{env.GITHUB_SHA_SHORT}}
path: |
Expand All @@ -55,12 +55,12 @@ jobs:

steps:
- name: Setup variables
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: core.exportVariable('GITHUB_SHA_SHORT', context.sha.substring(0, 7))

- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

Expand All @@ -71,7 +71,7 @@ jobs:
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -j2

- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: q2rtx-linux-x86_64-${{env.GITHUB_SHA_SHORT}}
path: |
Expand Down

0 comments on commit d9c994b

Please sign in to comment.