Skip to content

Commit f7f8d6d

Browse files
chore(deps): bump actions/checkout from 6 to 7
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 11feec0 commit f7f8d6d

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.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@v6
21+
- uses: actions/checkout@v7
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@v6
31+
- uses: actions/checkout@v7
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@v6
41+
- uses: actions/checkout@v7
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@v6
55+
- uses: actions/checkout@v7
5656
with:
5757
fetch-depth: 1
5858
- uses: dominikh/staticcheck-action@v1.4.1
@@ -72,6 +72,6 @@ jobs:
7272
- uses: actions/setup-go@v6
7373
with:
7474
go-version: ${{ env.GO_VERSION }}
75-
- uses: actions/checkout@v6
75+
- uses: actions/checkout@v7
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@v6
20+
uses: actions/checkout@v7
2121
with:
2222
fetch-depth: 0
2323
- name: Set up Go

0 commit comments

Comments
 (0)