Skip to content

Commit 9db6d3f

Browse files
authored
Merge pull request #786 from icflorescu/next
Update GitHub workflow action versions
2 parents 9de1ba7 + 2561bf5 commit 9db6d3f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/publish-and-deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626

2727
- name: Install pnpm
2828
uses: pnpm/action-setup@v4
@@ -33,11 +33,11 @@ jobs:
3333
- name: Setup Node.js
3434
uses: actions/setup-node@v6
3535
with:
36-
node-version: 24.11
36+
node-version: 24.12
3737
cache: pnpm
3838

3939
- name: Restore pnpm store
40-
uses: actions/cache@v4
40+
uses: actions/cache@v5
4141
with:
4242
path: ~/.pnpm-store
4343
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -58,7 +58,7 @@ jobs:
5858
path: ./out
5959

6060
- name: Upload package artifact
61-
uses: actions/upload-artifact@v5
61+
uses: actions/upload-artifact@v6
6262
with:
6363
name: package
6464
path: |
@@ -73,7 +73,7 @@ jobs:
7373
runs-on: ubuntu-latest
7474
needs: build
7575
steps:
76-
- uses: actions/download-artifact@v6
76+
- uses: actions/download-artifact@v7
7777
with:
7878
name: package
7979
- uses: JS-DevTools/npm-publish@v4

0 commit comments

Comments
 (0)