Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 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,15 +24,15 @@ 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
@semantic-release/github@8
@semantic-release/changelog@6.0.3
@semantic-release/git@10.0.1
@semantic-release/github@12.0.6
- name: Push updates to branch for major version
if: |
steps.semantic.outputs.new_release_published == 'true' &&
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