Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 856fc75

Browse files
committed
bump action versions
1 parent 87946a2 commit 856fc75

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: chetan/git-restore-mtime-action@v2
3434

3535
- name: Cache WebP Images
36-
uses: actions/cache@v4
36+
uses: actions/cache@v5
3737
with:
3838
path: |
3939
public/*
@@ -46,9 +46,9 @@ jobs:
4646
run: corepack enable
4747

4848
- name: Setup Node
49-
uses: actions/setup-node@v4
49+
uses: actions/setup-node@v6
5050
with:
51-
node-version: 22
51+
node-version: 25
5252
cache: 'yarn'
5353

5454
- name: Install Dependencies
@@ -68,10 +68,10 @@ jobs:
6868
sudo apt-get install -y webp
6969
7070
- name: Install ImageMagick
71-
uses: mfinelli/setup-imagemagick@v6
71+
uses: mfinelli/setup-imagemagick@v7
7272

7373
- name: Set up Python
74-
uses: actions/setup-python@v5
74+
uses: actions/setup-python@v6
7575
with:
7676
python-version: '3.x'
7777

@@ -88,7 +88,7 @@ jobs:
8888
run: yarn build ${{ inputs.base_path && format('--base {0}', inputs.base_path) || '' }}
8989

9090
- name: Upload build artifact
91-
uses: actions/upload-artifact@v4
91+
uses: actions/upload-artifact@v7
9292
with:
9393
name: build-output
9494
path: ./build

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: actions/checkout@v6
2727

2828
- name: Download build artifact
29-
uses: actions/download-artifact@v4
29+
uses: actions/download-artifact@v8
3030
with:
3131
name: build-output
3232
path: ./build

.github/workflows/preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
- name: Download build artifact
4343
if: github.event.action != 'closed'
44-
uses: actions/download-artifact@v4
44+
uses: actions/download-artifact@v8
4545
with:
4646
name: build-output
4747
path: ./build

0 commit comments

Comments
 (0)