Skip to content

Commit

Permalink
ci: update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
crash7 committed Apr 20, 2024
1 parent 5c1c9d6 commit 6feccc8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/health-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
uses: borales/actions-yarn@v5.0.0
with:
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.0.2
uses: actions/checkout@v4.1.1
with:
token: ${{ secrets.GH_TOKEN_NELSON }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install deps
uses: borales/actions-yarn@v3.0.0
uses: borales/actions-yarn@v5.0.0
with:
cmd: install --pure-lockfile # will run `yarn install` command
cmd: install --pure-lockfile
- name: Semantic release
uses: cycjimmy/semantic-release-action@v2.4.1
uses: cycjimmy/semantic-release-action@v4.1.0
env:
GIT_AUTHOR_NAME: ${{ secrets.GIT_USERNAME }}
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_EMAIL }}
Expand Down

0 comments on commit 6feccc8

Please sign in to comment.