Skip to content

Commit bc287f5

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

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: Check out repository code
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929
- name: Set Tag Names
3030
run: |
3131
echo "TAG=${{ github.head_ref || github.ref_name }}" >> $GITHUB_ENV
@@ -99,7 +99,7 @@ jobs:
9999
- name: Create k8s Kind Cluster
100100
uses: helm/kind-action@v1.12.0
101101
- name: Checkout
102-
uses: actions/checkout@v4
102+
uses: actions/checkout@v5
103103
- name: Run K8s test
104104
run: |
105105
kubectl cluster-info

.github/workflows/release.yml

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: Check out repository code
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
- name: Fetch remote tags
2222
run: git fetch origin +refs/tags/*:refs/tags/*
2323
- name: Set Tag Value

.github/workflows/tagging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
if: ${{ contains(github.ref, 'main') }}
2424
steps:
2525
- name: Check out repository code
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727
- name: Fetch remote tags
2828
run: git fetch origin +refs/tags/*:refs/tags/*
2929
- name: Set Tag Value

0 commit comments

Comments
 (0)