Skip to content

Commit 3b92229

Browse files
authored
Merge pull request #292 from inovex/dependabot/github_actions/actions/checkout-6
chore(deps): bump actions/checkout from 5 to 6
2 parents ba5c73a + 7391184 commit 3b92229

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/setup-go@v6
1919
with:
2020
go-version: ${{ env.GO_VERSION }}
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
- run: go vet $(go list ./... | grep -v /vendor/)
2323

2424
test:
@@ -28,7 +28,7 @@ jobs:
2828
- uses: actions/setup-go@v6
2929
with:
3030
go-version: ${{ env.GO_VERSION }}
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232
- run: go test $(go list ./... | grep -v /vendor/)
3333

3434
golangci:
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/setup-go@v6
3939
with:
4040
go-version: ${{ env.GO_VERSION }}
41-
- uses: actions/checkout@v5
41+
- uses: actions/checkout@v6
4242
with:
4343
fetch-depth: 1
4444
- uses: golangci/golangci-lint-action@v9
@@ -52,7 +52,7 @@ jobs:
5252
- uses: actions/setup-go@v6
5353
with:
5454
go-version: ${{ env.GO_VERSION }}
55-
- uses: actions/checkout@v5
55+
- uses: actions/checkout@v6
5656
with:
5757
fetch-depth: 1
5858
- uses: dominikh/staticcheck-action@v1.4.0
@@ -72,6 +72,6 @@ jobs:
7272
- uses: actions/setup-go@v6
7373
with:
7474
go-version: ${{ env.GO_VERSION }}
75-
- uses: actions/checkout@v5
75+
- uses: actions/checkout@v6
7676
- run: go mod vendor
7777
- run: go build -mod=vendor -ldflags "-X 'main.Version=${{ github.ref_name }}' -extldflags '-static'" -o calendarsync cmd/calendarsync/main.go

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0
2323
- name: Set up Go

0 commit comments

Comments
 (0)