Skip to content

Commit

Permalink
Use Node16 actions in publish.yml
Browse files Browse the repository at this point in the history
The commands `actions/checkout@v2` and `actions/setup-node@v2` are deprecated. We should use the next version of those actions https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/
  • Loading branch information
oporkka committed Jun 29, 2023
1 parent 13f0b8b commit 29ffd94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: 14
registry-url: "https://registry.npmjs.org"
Expand Down

0 comments on commit 29ffd94

Please sign in to comment.