Skip to content

Commit 09e7c16

Browse files
Bump actions/checkout from 4 to 5 (#154)
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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent a95794d commit 09e7c16

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
contents: read
1616
packages: write
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
- uses: docker/login-action@v3
2020
with:
2121
registry: ghcr.io
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ubuntu-latest
4040
if: ${{ github.event.release.tag_name != '' }}
4141
steps:
42-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v5
4343
with:
4444
fetch-depth: 0
4545
- run: |

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,21 @@ jobs:
2121
with:
2222
go-version: ${{ env.GO_VERSION }}
2323
cache: false
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
- run: go mod tidy && git diff --exit-code go.mod go.sum
2626
- run: go run github.com/elastic/[email protected] --config docs/config.yaml --renderer=markdown --output-path docs/api-reference.md --source-path=apis
2727
helm:
2828
name: helm-lint
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v5
3232
- run: helm lint helm/haproxy-operator/ --strict
3333
- run: helm template chart helm/haproxy-operator > /dev/null
3434
golangci:
3535
name: golangci-lint
3636
runs-on: ubuntu-latest
3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v5
3939
- uses: actions/setup-go@v5
4040
with:
4141
go-version: ${{ env.GO_VERSION }}
@@ -52,7 +52,7 @@ jobs:
5252
with:
5353
go-version: ${{ env.GO_VERSION }}
5454
cache: false
55-
- uses: actions/checkout@v4
55+
- uses: actions/checkout@v5
5656
- run: go run github.com/onsi/ginkgo/v2/[email protected] -r --randomize-all --randomize-suites --race --trace --fail-on-pending --keep-going --vet off --cover
5757
- run: cat coverprofile.out | grep -v "zz_generated." > coverprofile.out.filtered
5858
- uses: shogo82148/actions-goveralls@v1

0 commit comments

Comments
 (0)