Skip to content

Commit fb15d33

Browse files
committed
chore: update release action
1 parent b6a09a5 commit fb15d33

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/release.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
beta: ${{ startsWith(steps.check.outputs.type, 'pre') }}
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v3
1818
- name: Check version changes
19-
uses: EndBug/version-check@v1
19+
uses: EndBug/version-check@v2
2020
id: check
2121
latest:
2222
name: Publish Latest
@@ -25,7 +25,7 @@ jobs:
2525
if: contains(github.ref, 'master') && needs.check.outputs.changed == 'true' && needs.check.outputs.beta != 'true'
2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v2
28+
uses: actions/checkout@v3
2929
with:
3030
ref: ${{ needs.check.outputs.commit }}
3131
- name: Parse Changelog # Exits if changelog not found
@@ -34,7 +34,7 @@ jobs:
3434
INPUT_VERSION: ${{ needs.check.outputs.version }}
3535
run: node ./scripts/changelog/index.cjs
3636
- name: Set up Node.js
37-
uses: actions/setup-node@v1
37+
uses: actions/setup-node@v3
3838
with:
3939
registry-url: "https://registry.npmjs.org"
4040
- name: Install dependencies
@@ -59,11 +59,11 @@ jobs:
5959
if: contains(github.ref, 'next') && needs.check.outputs.changed == 'true' && needs.check.outputs.beta == 'true'
6060
steps:
6161
- name: Checkout repository
62-
uses: actions/checkout@v2
62+
uses: actions/checkout@v3
6363
with:
6464
ref: ${{ needs.check.outputs.commit }}
6565
- name: Set up Node.js
66-
uses: actions/setup-node@v1
66+
uses: actions/setup-node@v3
6767
with:
6868
registry-url: "https://registry.npmjs.org"
6969
- name: Install dependencies

0 commit comments

Comments
 (0)