Skip to content

Commit fd59c6d

Browse files
author
Pascal Klesse
committed
fix: adjust github action versions
1 parent 2f6b3d3 commit fd59c6d

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ jobs:
1212
publish:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v1
15+
- uses: actions/checkout@v4
1616

1717
- uses: pnpm/action-setup@v4
18+
with:
19+
version: 10
1820

1921
- name: Use Node LTS ✨
2022
uses: actions/setup-node@v4

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,13 @@ jobs:
1111
permissions:
1212
contents: write
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 3
17+
1718
- name: Create release notes
1819
run: diff --changed-group-format='%>' --unchanged-group-format='' <( git show HEAD~1:CHANGELOG.md ) CHANGELOG.md > RELEASE_NOTES.md || true
20+
1921
- uses: ncipollo/release-action@v1
2022
with:
2123
bodyFile: 'RELEASE_NOTES.md'

0 commit comments

Comments
 (0)