Skip to content

Commit 55ed2c6

Browse files
authored
Upgrade actions/Go versions in GitHub workflows (#35)
1 parent 3bce784 commit 55ed2c6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/docker-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v5
1818

1919
- name: Set up Docker Buildx
2020
uses: docker/setup-buildx-action@v2

.github/workflows/go-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616

1717
- name: Set up Go
1818
uses: actions/setup-go@v5
1919
with:
20-
go-version: 1.22
20+
go-version: 1.25
2121
cache: true
2222

2323
- name: Install dependencies

.github/workflows/mirror.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Checkout private repository
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515
if: ${{ env.ENABLE_MIRROR == 'true' }}
1616
with:
1717
# Must be set to avoid conflicting with the subsequent push

0 commit comments

Comments
 (0)