Skip to content

Commit 9c14301

Browse files
committed
ci: upgrade workflow version
1 parent c3fbddc commit 9c14301

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

.github/workflows/docker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
uses: docker/setup-buildx-action@v3
3131

3232
- name: Checkout repository
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v6
3434

3535
- name: Log in to the Container registry
3636
uses: docker/login-action@master

.github/workflows/lint.yml

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

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

1717
- name: Set up Go
18-
uses: actions/setup-go@v5
18+
uses: actions/setup-go@v6
1919
with:
2020
go-version-file: "go.mod"
21-
cache: true
2221

2322
- name: Install dependencies
2423
run: go mod download
2524

2625
- name: Lint with golangci-lint
27-
uses: golangci/golangci-lint-action@v8
26+
uses: golangci/golangci-lint-action@v9
2827
with:
2928
version: latest
3029

.github/workflows/test.yaml

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

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

1717
- name: Set up Go
18-
uses: actions/setup-go@v5
18+
uses: actions/setup-go@v6
1919
with:
2020
go-version-file: "go.mod"
21-
cache: true
2221

2322
- name: Install dependencies
2423
run: go mod download

0 commit comments

Comments
 (0)