Skip to content

Commit 00fef76

Browse files
authored
Merge pull request #475 from jetstack/dependabot/github_actions/actions/checkout-4
build(deps): bump actions/checkout from 3 to 4
2 parents 527fac3 + 1a25f60 commit 00fef76

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/chart-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
unittest:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- uses: d3adb5/helm-unittest-action@v2
1717
with:
1818
flags: "--color --strict"

.github/workflows/release-master.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313
runs-on: ubuntu-22.04
1414
container: golang:1.19
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- run: make vet
1818
shell: bash
1919
test:
2020
name: go test
2121
runs-on: ubuntu-22.04
2222
container: golang:1.19
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
- run: make test
2626
docker_build:
2727
name: docker_build
@@ -53,7 +53,7 @@ jobs:
5353
uses: sigstore/cosign-installer@1fc5bd396d372bee37d608f955b336615edf79c8
5454
- name: Install Syft
5555
uses: anchore/sbom-action/download-syft@fd74a6fb98a204a1ad35bbfae0122c1a302ff88b
56-
- uses: actions/checkout@v3
56+
- uses: actions/checkout@v4
5757
- name: Set up QEMU
5858
uses: docker/setup-qemu-action@v3
5959
- name: Set up Docker Buildx

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
runs-on: ubuntu-22.04
1616
container: golang:1.19
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- run: make vet
2020
shell: bash
2121
test:
2222
name: go test
2323
runs-on: ubuntu-22.04
2424
container: golang:1.19
2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727
- run: make test
2828
docker_build:
2929
name: docker_build
@@ -44,7 +44,7 @@ jobs:
4444
- name: Adding github workspace as safe directory
4545
# See issue https://github.com/actions/checkout/issues/760
4646
run: git config --global --add safe.directory $GITHUB_WORKSPACE
47-
- uses: actions/checkout@v3
47+
- uses: actions/checkout@v4
4848
- name: Set up QEMU
4949
uses: docker/setup-qemu-action@v3
5050
- name: Set up Docker Buildx

0 commit comments

Comments
 (0)