File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 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
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:
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
Original file line number Diff line number Diff line change 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
2323 working-directory : website
2424 - name : Test build website
2525 run : yarn build
26- working-directory : website
26+ working-directory : website
Original file line number Diff line number Diff 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 : |
You can’t perform that action at this time.
0 commit comments