Skip to content
Merged
6 changes: 3 additions & 3 deletions .github/workflows/release-on-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
concurrency: ${{ github.ref }}
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v5
with:
version: 7.6.0
- uses: actions/setup-node@v6
Expand All @@ -24,11 +24,11 @@ jobs:
- run: pnpm package
- name: Semantic Release
id: semantic
uses: cycjimmy/semantic-release-action@v3
uses: cycjimmy/semantic-release-action@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
semantic_version: 19
semantic_version: 24
Comment thread
cursor[bot] marked this conversation as resolved.
Comment thread
kristianmills marked this conversation as resolved.
extra_plugins: |
@semantic-release/changelog@6
@semantic-release/git@10
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test-on-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ jobs:
concurrency: ${{ github.ref }}
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v2
with:
ref: ${{ github.head_ref }}
- uses: pnpm/action-setup@v5
with:
version: 7.6.0
- uses: actions/setup-node@v6
Expand All @@ -18,7 +20,7 @@ jobs:
- run: pnpm install --frozen-lockfile
- run: pnpm lint
- name: commit linting changes
uses: stefanzweifel/git-auto-commit-action@v4.16.0
uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: ":robot: pnpm lint [skip ci]"
- run: pnpm test
2 changes: 1 addition & 1 deletion .github/workflows/validate-pr-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Validate PR Title
uses: amannn/action-semantic-pull-request@v5
uses: amannn/action-semantic-pull-request@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
Loading