Skip to content

Commit 4586e34

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

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/ci.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99
# Execute the checks inside the container instead the VM.
1010
container: golangci/golangci-lint:v1.50.0-alpine
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- run: ./scripts/check/check.sh
1414

1515
unit-test:
1616
name: Unit test
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020
- uses: actions/setup-go@v3
2121
with:
2222
go-version-file: go.mod
@@ -31,7 +31,7 @@ jobs:
3131
name: Helm chart test
3232
runs-on: ubuntu-latest
3333
steps:
34-
- uses: actions/checkout@v3
34+
- uses: actions/checkout@v4
3535
- uses: actions/setup-go@v3
3636
with:
3737
go-version-file: go.mod
@@ -48,7 +48,7 @@ jobs:
4848
name: Integration test CLI
4949
runs-on: ubuntu-latest
5050
steps:
51-
- uses: actions/checkout@v3
51+
- uses: actions/checkout@v4
5252
- uses: actions/setup-go@v3
5353
with:
5454
go-version-file: go.mod
@@ -70,7 +70,7 @@ jobs:
7070
matrix:
7171
kubernetes: [1.21.14, 1.22.15, 1.23.12, 1.24.6, 1.25.2]
7272
steps:
73-
- uses: actions/checkout@v3
73+
- uses: actions/checkout@v4
7474
- uses: actions/setup-go@v3
7575
with:
7676
go-version-file: go.mod
@@ -113,7 +113,7 @@ jobs:
113113
name: Release images
114114
runs-on: ubuntu-latest
115115
steps:
116-
- uses: actions/checkout@v3
116+
- uses: actions/checkout@v4
117117
- name: Docker login
118118
run: docker login ghcr.io -u ${{ github.actor }} -p "${{ secrets.GITHUB_TOKEN }}"
119119
- name: Build and publish docker images
@@ -129,7 +129,7 @@ jobs:
129129
runs-on: ubuntu-latest
130130
steps:
131131
- run: echo "VERSION=${GITHUB_REF#refs/*/}" >> ${GITHUB_ENV} # Sets VERSION env var.
132-
- uses: actions/checkout@v3
132+
- uses: actions/checkout@v4
133133
- name: Docker login
134134
run: docker login ghcr.io -u ${{ github.actor }} -p "${{ secrets.GITHUB_TOKEN }}"
135135
- name: Build and publish docker images
@@ -143,7 +143,7 @@ jobs:
143143
runs-on: ubuntu-latest
144144
steps:
145145
- run: echo "VERSION=${GITHUB_REF#refs/*/}" >> ${GITHUB_ENV} # Sets VERSION env var.
146-
- uses: actions/checkout@v3
146+
- uses: actions/checkout@v4
147147
- name: Build binaries
148148
run: |
149149
mkdir -p ./bin

.github/workflows/generate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Generate the SLOs
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- name: download and setup generator binary
1616
run: |
1717
wget https://github.com/kolonialno/sloth/releases/download/v0.11.0/sloth-linux-amd64

.github/workflows/helmrelease.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 0
1818

0 commit comments

Comments
 (0)