Skip to content

Commit cd258d7

Browse files
chore(deps): update github artifact actions
1 parent 563fdc1 commit cd258d7

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
echo "🐌 E2E実行時間: 通常範囲" >> $GITHUB_STEP_SUMMARY
5656
fi
5757
58-
- uses: actions/upload-artifact@v6
58+
- uses: actions/upload-artifact@v7
5959
if: ${{ !cancelled() }}
6060
with:
6161
name: playwright-report
@@ -77,7 +77,7 @@ jobs:
7777
token: ${{ secrets.HOSTING_PAGES_TOKEN }}
7878
ref: main
7979
- name: Download Playwright Report Artifact
80-
uses: actions/download-artifact@v7
80+
uses: actions/download-artifact@v8
8181
with:
8282
name: playwright-report
8383
path: "./online-draft/playwright/${{ github.event.pull_request.number }}"

.github/workflows/vrt-compare.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,25 +39,25 @@ jobs:
3939
mkdir -p .reg/expected
4040
4141
- name: Download expected screenshots (shard 1)
42-
uses: actions/download-artifact@v7
42+
uses: actions/download-artifact@v8
4343
with:
4444
name: ${{ inputs.expected_prefix }}-screenshots-1
4545
path: .reg/expected
4646

4747
- name: Download expected screenshots (shard 2)
48-
uses: actions/download-artifact@v7
48+
uses: actions/download-artifact@v8
4949
with:
5050
name: ${{ inputs.expected_prefix }}-screenshots-2
5151
path: .reg/expected
5252

5353
- name: Download actual screenshots (shard 1)
54-
uses: actions/download-artifact@v7
54+
uses: actions/download-artifact@v8
5555
with:
5656
name: ${{ inputs.actual_prefix }}-screenshots-1
5757
path: __screenshots__
5858

5959
- name: Download actual screenshots (shard 2)
60-
uses: actions/download-artifact@v7
60+
uses: actions/download-artifact@v8
6161
with:
6262
name: ${{ inputs.actual_prefix }}-screenshots-2
6363
path: __screenshots__
@@ -69,7 +69,7 @@ jobs:
6969
run: mv .reg report
7070

7171
- name: Upload VRT Report
72-
uses: actions/upload-artifact@v6
72+
uses: actions/upload-artifact@v7
7373
with:
7474
name: vrt-report
7575
path: report/

.github/workflows/vrt-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
ref: main
3232

3333
- name: Download Storybook artifact
34-
uses: actions/download-artifact@v7
34+
uses: actions/download-artifact@v8
3535
with:
3636
name: ${{ inputs.storybook_artifact }}
3737
path: "./online-draft/storybook/${{ inputs.pr_number }}"
3838

3939
- name: Download VRT report artifact
40-
uses: actions/download-artifact@v7
40+
uses: actions/download-artifact@v8
4141
with:
4242
name: ${{ inputs.report_artifact }}
4343
path: "./online-draft/vrt/${{ inputs.pr_number }}"

.github/workflows/vrt-prepare.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060

6161
- name: Upload Storybook build
6262
id: upload
63-
uses: actions/upload-artifact@v6
63+
uses: actions/upload-artifact@v7
6464
with:
6565
name: ${{ inputs.artifact_prefix }}-storybook-static
6666
path: storybook-static/
@@ -93,7 +93,7 @@ jobs:
9393
run: sudo apt-get install fonts-ipafont-gothic
9494

9595
- name: Download Storybook build
96-
uses: actions/download-artifact@v7
96+
uses: actions/download-artifact@v8
9797
with:
9898
name: ${{ inputs.artifact_prefix }}-storybook-static
9999
path: storybook-static/
@@ -102,7 +102,7 @@ jobs:
102102
run: pnpm dlx concurrently -k -s first -n "SB,TEST" -c "magenta,blue" "pnpm dlx http-server storybook-static --port 6006 --silent" "pnpm dlx wait-on tcp:127.0.0.1:6006 && pnpm storybook:test --testTimeout 60000 -- --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }}"
103103

104104
- name: Upload screenshots
105-
uses: actions/upload-artifact@v6
105+
uses: actions/upload-artifact@v7
106106
with:
107107
name: ${{ inputs.artifact_prefix }}-screenshots-${{ matrix.shardIndex }}
108108
path: __screenshots__

0 commit comments

Comments
 (0)