Skip to content

Commit

Permalink
fix: add missing semantic-release dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Kai Volland committed Nov 29, 2023
1 parent b4cf892 commit aa60480
Show file tree
Hide file tree
Showing 6 changed files with 264 additions and 398 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@v5
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/on-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
with:
persist-credentials: false

- name: Use Node.js 18.x
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 20.x

- name: Cache Node.js modules 💾
uses: actions/cache@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/on-push-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v4

- name: Use Node.js 18.x
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 20.x

- name: Cache Node.js modules 💾
uses: actions/cache@v3
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources 🔰
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node.js 18 👷🏻
uses: actions/setup-node@v3
- name: Setup Node.js 20 👷🏻
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20

- name: Install dependencies ⏬
run: npm ci
Expand All @@ -23,7 +23,7 @@ jobs:
run: npm run build

- name: Release 🚀
uses: cycjimmy/semantic-release-action@v3
uses: cycjimmy/semantic-release-action@v4
id: semantic
env:
GITHUB_TOKEN: ${{ secrets.GH_RELEASE_TOKEN }}
Expand Down

0 comments on commit aa60480

Please sign in to comment.