Skip to content

Commit 91c8a3f

Browse files
authored
Merge pull request #13 from InputObject2/hotfix/release-management
fix(ci): release workflow was using deprecated actions
2 parents 961f40a + f5fc23a commit 91c8a3f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111

1212
steps:
1313
- name: Checkout Repository
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515

1616
- name: Setup Node.js
17-
uses: actions/setup-node@v2
17+
uses: actions/setup-node@v4
1818
with:
19-
node-version: '14'
19+
node-version: '20'
2020

2121
- name: Bump Version and Create Release
22-
uses: phips28/gh-action-bump-version@v9
22+
uses: phips28/gh-action-bump-version@v11
2323
env:
2424
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2525
with:
@@ -28,7 +28,7 @@ jobs:
2828
commit-message: "chore(release): bump version to {{version}} [skip ci]"
2929

3030
- name: Create GitHub Release
31-
uses: softprops/action-gh-release@v1
31+
uses: softprops/action-gh-release@v2
3232
env:
3333
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3434
with:

0 commit comments

Comments
 (0)