Skip to content

Commit

Permalink
Updated GitHub actions to avoid Node.js 16 deprecation warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
apanteleev committed Feb 10, 2024
1 parent 7f42753 commit 84ffe6e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,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 @@ -82,7 +82,7 @@ jobs:
run: cmake --install ${{github.workspace}}/build

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

0 comments on commit 84ffe6e

Please sign in to comment.