Skip to content

Commit cd38bde

Browse files
committed
Update CI Flow deps
1 parent c495449 commit cd38bde

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/deploy.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Deploy to GitHub Pages
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- uses: actions/setup-node@v4
1717
with:
1818
node-version: 20
@@ -29,7 +29,7 @@ jobs:
2929
# Popular action to deploy to GitHub Pages:
3030
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus
3131
- name: Deploy to GitHub Pages
32-
uses: peaceiris/actions-gh-pages@v3
32+
uses: peaceiris/actions-gh-pages@v4
3333
with:
3434
github_token: ${{ secrets.GITHUB_TOKEN }}
3535
# Build output to publish to the `gh-pages` branch:
@@ -40,4 +40,4 @@ jobs:
4040
# The GH actions bot is used by default if you didn't specify the two fields.
4141
# You can swap them out with your own user credentials.
4242
user_name: github-actions[bot]
43-
user_email: 41898282+github-actions[bot]@users.noreply.github.com
43+
user_email: 41898282+github-actions[bot]@users.noreply.github.com

.github/workflows/test-deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Test deployment
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- uses: actions/setup-node@v4
1717
with:
1818
node-version: 20
@@ -23,4 +23,4 @@ jobs:
2323
working-directory: website
2424
- name: Test build website
2525
run: yarn build
26-
working-directory: website
26+
working-directory: website

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ jobs:
1414
matrix:
1515
os: [ubuntu-latest]
1616
# Each major Go release is supported until there are two newer major releases. https://golang.org/doc/devel/release.html#policy
17-
go: [1.23]
17+
go: [1.24]
1818
name: ${{ matrix.os }} @ Go ${{ matrix.go }}
1919
runs-on: ${{ matrix.os }}
2020
steps:
2121
- name: Set up Go ${{ matrix.go }}
22-
uses: actions/setup-go@v4
22+
uses: actions/setup-go@v5
2323
with:
2424
go-version: ${{ matrix.go }}
2525

2626
- name: Checkout Code
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828

2929
- name: Run Tests
3030
run: |

0 commit comments

Comments
 (0)