Skip to content

Commit

Permalink
chore: update release action
Browse files Browse the repository at this point in the history
  • Loading branch information
feildmaster committed Apr 3, 2023
1 parent b6a09a5 commit 12f2502
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
beta: ${{ startsWith(steps.check.outputs.type, 'pre') }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Check version changes
uses: EndBug/version-check@v1
uses: EndBug/version-check@v9
id: check
latest:
name: Publish Latest
Expand All @@ -25,7 +25,7 @@ jobs:
if: contains(github.ref, 'master') && needs.check.outputs.changed == 'true' && needs.check.outputs.beta != 'true'
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: ${{ needs.check.outputs.commit }}
- name: Parse Changelog # Exits if changelog not found
Expand All @@ -34,7 +34,7 @@ jobs:
INPUT_VERSION: ${{ needs.check.outputs.version }}
run: node ./scripts/changelog/index.cjs
- name: Set up Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
Expand All @@ -59,11 +59,11 @@ jobs:
if: contains(github.ref, 'next') && needs.check.outputs.changed == 'true' && needs.check.outputs.beta == 'true'
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: ${{ needs.check.outputs.commit }}
- name: Set up Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
Expand Down

0 comments on commit 12f2502

Please sign in to comment.