Skip to content

Commit

Permalink
build-installers: Update to actions/checkout v4
Browse files Browse the repository at this point in the history
When running the build-installers workflow recently, I saw the following
warning:

  Node.js 16 actions are deprecated. Please update the following actions
  to use Node.js 20: actions/checkout@v3. For more information see:
  https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.

Update the actions/checkout task to v4 to avoid this node deprecation.

Signed-off-by: Derrick Stolee <stolee@gmail.com>
  • Loading branch information
derrickstolee committed May 2, 2024
1 parent b68812e commit 9658bd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-git-installers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
echo "version=${GITHUB_REF#refs/tags/v}" >>$GITHUB_OUTPUT
id: tag
- name: Clone git
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Validate the tag identified with trigger
run: |
die () {
Expand Down

0 comments on commit 9658bd8

Please sign in to comment.