Skip to content

Commit

Permalink
Fix the following GitHub actions warnings
Browse files Browse the repository at this point in the history
1. build:

- Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@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/.

2. Deprecation notice: v1, v2, and v3 of the artifact actions:

- The following artifacts were uploaded using a version of actions/upload-artifact that is scheduled for deprecation: "piclas-binaries-v3.2.1".
- Please update your workflow to use v4 of the artifact actions.
- Learn more: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/
  • Loading branch information
scopplestone committed May 15, 2024
1 parent beb8e37 commit b9041e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cmake-ninja.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
git --version
- name: Checkout repository including the .git directory
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -404,7 +404,7 @@ jobs:
ls -la artifacts
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: piclas-binaries-v3.2.1
path: artifacts
Expand Down

0 comments on commit b9041e2

Please sign in to comment.