Skip to content

Commit a2995ff

Browse files
Matthias_HuetherAlexander_Hoeft
authored andcommitted
chore(deps): update actions/checkout action to v6 (#181)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://github.com/actions/checkout) | action | major | `v4` → `v6` | --- ### Release Notes <details> <summary>actions/checkout (actions/checkout)</summary> ### [`v6`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v600) [Compare Source](actions/checkout@v5...v6) - Persist creds to a separate file by [@&#8203;ericsciple](https://github.com/ericsciple) in [#&#8203;2286](actions/checkout#2286) - Update README to include Node.js 24 support details and requirements by [@&#8203;salmanmkc](https://github.com/salmanmkc) in [#&#8203;2248](actions/checkout#2248) ### [`v5`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v501) [Compare Source](actions/checkout@v4...v5) - Port v6 cleanup to v5 by [@&#8203;ericsciple](https://github.com/ericsciple) in [#&#8203;2301](actions/checkout#2301) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNzMuMSIsInVwZGF0ZWRJblZlciI6IjQyLjcyLjAiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOltdfQ==--> Reviewed-on: https://kubara.git.onstackit.cloud/STACKIT/kubara/pulls/181 Co-authored-by: Matthias_Huether <matthias.huether_ext@external.stackit.cloud> Co-committed-by: Matthias_Huether <matthias.huether_ext@external.stackit.cloud>
1 parent 4f56d47 commit a2995ff

7 files changed

Lines changed: 11 additions & 11 deletions

.forgejo/workflows/docs-build-push-latest-dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
working-directory: ./docs
1818
steps:
1919
- name: checkout kubara repo
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v6
2121
with:
2222
token: ${{ secrets.DOCS_CF_PAT }}
2323
fetch-depth: 0

.forgejo/workflows/docs-build-push-latest-stable.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
working-directory: ./docs
1919
steps:
2020
- name: checkout kubara repo
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v6
2222
with:
2323
token: ${{ secrets.DOCS_CF_PAT }}
2424
fetch-depth: 0

.forgejo/workflows/pre-commit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
password: ${{ secrets.HARBOR_REGISTRY_TOKEN }}
1212
steps:
1313
- name: checkout repository
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515
- name: check python version
1616
run: |
1717
python --version

.forgejo/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
password: ${{ secrets.HARBOR_REGISTRY_TOKEN }}
1818
steps:
1919
- name: checkout kubara repo
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0
2323
fetch-tags: true

.forgejo/workflows/renovate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
image: catthehacker/ubuntu:runner-24.04
1111
steps:
1212
- name: checkout kubara repo
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v6
1414
- name: run renovatebot
1515
uses: renovatebot/github-action@v44.2.3
1616
with:

.forgejo/workflows/testsuite_01-build-generate.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
working-directory: ${{ env.CODE_PATH }}
4646
steps:
4747
- name: Checkout
48-
uses: actions/checkout@v4
48+
uses: actions/checkout@v6
4949
with:
5050
sparse-checkout: go-binary
5151

@@ -175,7 +175,7 @@ jobs:
175175
working-directory: ${{ env.CODE_PATH }}
176176
steps:
177177
- name: Checkout
178-
uses: actions/checkout@v4
178+
uses: actions/checkout@v6
179179
with:
180180
sparse-checkout: go-binary
181181

@@ -239,7 +239,7 @@ jobs:
239239
binary-size: ${{ steps.build.outputs.binary-size }}
240240
steps:
241241
- name: Checkout
242-
uses: actions/checkout@v4
242+
uses: actions/checkout@v6
243243
with:
244244
sparse-checkout: go-binary
245245

@@ -331,7 +331,7 @@ jobs:
331331
KUBARA_PUBLIC_LOADBALANCER_IP: "0.0.0.0"
332332
steps:
333333
- name: Checkout Test Repo
334-
uses: actions/checkout@v4
334+
uses: actions/checkout@v6
335335
with:
336336
path: testRepo
337337
token: ${{ secrets.ARGOCD_GIT_PAT }}

.forgejo/workflows/testsuite_02-static-analysis.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
steps:
3131
- name: Checkout test repo
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v6
3333
with:
3434
path: testRepo
3535
token: ${{ secrets.ARGOCD_GIT_PAT }}
@@ -159,7 +159,7 @@ jobs:
159159

160160
steps:
161161
- name: Checkout test repo
162-
uses: actions/checkout@v4
162+
uses: actions/checkout@v6
163163
with:
164164
path: testRepo
165165
token: ${{ secrets.ARGOCD_GIT_PAT }}

0 commit comments

Comments
 (0)