Skip to content

Commit f5069c3

Browse files
kurehajimeclaude
andcommitted
Update GitHub Actions to latest versions
- Update actions/checkout@v2/v3 → @v4 - Update actions/configure-pages@v1 → @v5 - Update actions/deploy-pages@v3 → @v4 - Fix deprecated action versions warnings 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent d6451a1 commit f5069c3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/firebase-hosting-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
build_and_deploy:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
- run: npm ci && npm run build
1515
- uses: FirebaseExtended/action-hosting-deploy@v0
1616
with:

.github/workflows/firebase-hosting-pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
if: '${{ github.event.pull_request.head.repo.full_name == github.repository }}'
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v4
1212
- run: npm ci && npm run build
1313
- uses: FirebaseExtended/action-hosting-deploy@v0
1414
with:

.github/workflows/pages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: Checkout
36-
uses: actions/checkout@v3
36+
uses: actions/checkout@v4
3737
- name: Setup Pages
38-
uses: actions/configure-pages@v1
38+
uses: actions/configure-pages@v5
3939
- name: Setup Node
4040
uses: actions/setup-node@v4
4141
with:
@@ -49,4 +49,4 @@ jobs:
4949
path: './docs'
5050
- name: Deploy to GitHub Pages
5151
id: deployment
52-
uses: actions/deploy-pages@v3
52+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)