Skip to content

Commit c6fae4b

Browse files
authored
Update main.yml
Update every action to v4
1 parent 1c98e3a commit c6fae4b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,21 @@ jobs:
1212
concurrency:
1313
group: ${{ github.workflow }}-${{ github.ref }}
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616

1717
- name: Setup Node
18-
uses: actions/setup-node@v3
18+
uses: actions/setup-node@v4
1919
with:
2020
node-version: '20'
2121

2222
- name: Cache pnpm modules
23-
uses: actions/cache@v3
23+
uses: actions/cache@v4
2424
with:
2525
path: ~/.pnpm-store
2626
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
2727
restore-keys: |
2828
${{ runner.os }}-
29-
- uses: pnpm/action-setup@v3
29+
- uses: pnpm/action-setup@v4
3030
with:
3131
version: 9.0.5
3232
run_install: true
@@ -37,7 +37,7 @@ jobs:
3737
- run: cp -a static/. ./build/ # Copy missing files to build folder
3838

3939
- name: Deploy
40-
uses: peaceiris/actions-gh-pages@v3
40+
uses: peaceiris/actions-gh-pages@v4
4141
if: ${{ github.ref == 'refs/heads/master' }}
4242
with:
4343
github_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)