Skip to content

Commit 8997496

Browse files
chore(deps): bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 33e3ed8 commit 8997496

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@v5
1919
with:
2020
go-version: ${{ env.GO_VERSION }}
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- run: go vet $(go list ./... | grep -v /vendor/)
2323

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

3434
golangci:
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/setup-go@v5
3939
with:
4040
go-version: ${{ env.GO_VERSION }}
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v5
4242
with:
4343
fetch-depth: 1
4444
- uses: golangci/golangci-lint-action@v8
@@ -52,7 +52,7 @@ jobs:
5252
- uses: actions/setup-go@v5
5353
with:
5454
go-version: ${{ env.GO_VERSION }}
55-
- uses: actions/checkout@v4
55+
- uses: actions/checkout@v5
5656
with:
5757
fetch-depth: 1
5858
- uses: dominikh/staticcheck-action@v1.4.0
@@ -72,6 +72,6 @@ jobs:
7272
- uses: actions/setup-go@v5
7373
with:
7474
go-version: ${{ env.GO_VERSION }}
75-
- uses: actions/checkout@v4
75+
- uses: actions/checkout@v5
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@v4
20+
uses: actions/checkout@v5
2121
with:
2222
fetch-depth: 0
2323
- name: Set up Go

0 commit comments

Comments
 (0)