Skip to content

Commit

Permalink
Update workflow files to Node 20, actions/checkout@v4, actions/setup-…
Browse files Browse the repository at this point in the history
…node@v4, stefanzweifel/git-auto-commit-action@v5
  • Loading branch information
Ap3rtur3 committed Jun 18, 2024
1 parent 60d1611 commit b7a9088
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20
registry-url: 'https://npm.pkg.github.com'
- name: Setup project
env:
Expand All @@ -36,7 +36,7 @@ jobs:
run: |
npm version ${{ inputs.version }} --no-commit-hooks --no-git-tag-version
npm run release
- uses: stefanzweifel/git-auto-commit-action@v4
- uses: stefanzweifel/git-auto-commit-action@v5
id: commit-step
with:
commit_message: Release version v${{ inputs.version }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-and-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ jobs:
test-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20
registry-url: 'https://npm.pkg.github.com'
- name: Setup project
env:
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ inputs:
description: 'The location of the deploy-now config file'
required: false
runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'

0 comments on commit b7a9088

Please sign in to comment.