Skip to content

Commit 6d60bb7

Browse files
committed
chore: update publish action
Upgrades action versions and node version.
1 parent 304fef6 commit 6d60bb7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ name: Publish
33
on:
44
push:
55
tags:
6-
- '*'
6+
- "*"
77

88
jobs:
99
npm:
1010
name: Release on NPM
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v1
14-
- uses: actions/setup-node@v1
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
1515
with:
16-
node-version: 16
16+
node-version: 22
1717
registry-url: https://registry.npmjs.org/
1818
- run: yarn install
1919
- run: npm publish --access public
@@ -25,8 +25,8 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v2
28+
uses: actions/checkout@v4
2929
- name: Release
30-
uses: softprops/action-gh-release@v1
30+
uses: softprops/action-gh-release@v2
3131
env:
3232
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)