Skip to content

Commit c0401bd

Browse files
committed
.github: publish.yml: update action versions and node to v20
1 parent 088bb6a commit c0401bd

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/publish.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: publish
22

33
# Run when a new Github publish is released
4-
on:
4+
on:
55
release:
66
types: [released]
77

@@ -10,24 +10,24 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Check out repository code
13-
uses: actions/checkout@v3
14-
13+
uses: actions/checkout@v4
14+
1515
- name: Setup node
16-
uses: actions/setup-node@v3
17-
with:
18-
node-version: '16'
19-
16+
uses: actions/setup-node@v4
17+
with:
18+
node-version: "20"
19+
2020
- name: Install packages
2121
run: npm install
22-
22+
2323
- name: Build project and dependencies
2424
run: npm run build
25-
25+
2626
- name: Run unit tests and generate report
2727
run: npm run test:ci
2828

2929
- name: Publish package
30-
uses: JS-DevTools/npm-publish@v1
30+
uses: JS-DevTools/npm-publish@v3
3131
with:
3232
token: ${{ secrets.NPM_TOKEN }}
33-
access: "public"
33+
access: "public"

0 commit comments

Comments
 (0)