Skip to content

Commit ca6ac94

Browse files
lwinmoepaingclaude
andcommitted
⬆️ ci: upgrade GitHub Actions to latest versions
Fix deprecated actions/upload-artifact v3 causing CI failure. Upgrade checkout@v4, configure-pages@v5, cache@v4, upload-pages-artifact@v3, deploy-pages@v4. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent d414255 commit ca6ac94

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,19 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636
- name: Setup Bun
3737
uses: oven-sh/setup-bun@v1
3838
- name: Setup Pages
39-
uses: actions/configure-pages@v3
39+
uses: actions/configure-pages@v5
4040
with:
4141
# Automatically inject basePath in your Next.js configuration file and disable
4242
# server side image optimization (https://nextjs.org/docs/api-reference/next/image#unoptimized).
4343
#
4444
# May remove this line if we want to manage the configuration ourself.
4545
static_site_generator: next
4646
- name: Restore cache
47-
uses: actions/cache@v3
47+
uses: actions/cache@v4
4848
with:
4949
path: |
5050
.next/cache
@@ -58,7 +58,7 @@ jobs:
5858
- name: Build with Next.js
5959
run: bun run build
6060
- name: Upload artifact
61-
uses: actions/upload-pages-artifact@v2
61+
uses: actions/upload-pages-artifact@v3
6262
with:
6363
path: ./out
6464

@@ -72,4 +72,4 @@ jobs:
7272
steps:
7373
- name: Deploy to GitHub Pages
7474
id: deployment
75-
uses: actions/deploy-pages@v2
75+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)