Skip to content

Commit

Permalink
ci: upgrade github action to v4
Browse files Browse the repository at this point in the history
This will dismiss the warning of deprecated Node.js 16

Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/cache@v3, actions/upload-artifact@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
  • Loading branch information
Bambooin committed Feb 12, 2024
1 parent 872cecf commit aa2441a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/macos-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Cache Boost
id: cache-boost
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
${{ env.BOOST_ROOT }}.tar.xz
Expand All @@ -69,7 +69,7 @@ jobs:

- name: Cache dependencies
id: cache-deps
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
bin
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Cache Boost source
id: cache-boost-src
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
${{ env.BOOST_ROOT }}.7z
Expand All @@ -86,7 +86,7 @@ jobs:
- name: Cache dependencies
id: cache-deps
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
bin
Expand Down

0 comments on commit aa2441a

Please sign in to comment.