Skip to content

Commit cbde224

Browse files
committed
Updates actions and Go version
Updates the GitHub Actions checkout and setup-go versions to the latest. This ensures compatibility with newer features and security patches.
1 parent 3f51ee8 commit cbde224

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/push.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout Web Repo
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v5
2121
with:
2222
repository: davidgs/DavidgsWeb
2323
submodules: true # Fetch Hugo themes (true OR recursive)
2424
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
2525
path: ./DavidgsWeb
2626
- name: Checkout Translate
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v5
2828
with:
2929
repository: davidgs/Translator
3030
path: ./translate
@@ -34,9 +34,9 @@ jobs:
3434
hugo-version: '0.146.0'
3535
extended: true
3636
- name: Setup go
37-
uses: actions/setup-go@v1
37+
uses: actions/setup-go@v6
3838
with:
39-
go-version: '1.25.1'
39+
go-version: '1.25.5'
4040
- name: Build Translator
4141
run: cd ./translate; go build translate.go
4242
- name: Create Secret

0 commit comments

Comments
 (0)