Skip to content

Commit ffd6765

Browse files
build(deps): bump actions/checkout from 6 to 7
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent cb5434d commit ffd6765

10 files changed

Lines changed: 15 additions & 15 deletions

.github/workflows/dependabot-auto.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: github.actor == 'dependabot[bot]'
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v6
16+
uses: actions/checkout@v7
1717

1818
- name: Dependabot metadata
1919
id: metadata

.github/workflows/integration.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
steps:
3333
# ==================== Setup ====================
3434
- name: Checkout
35-
uses: actions/checkout@v6
35+
uses: actions/checkout@v7
3636

3737
- name: Set Image Tag Env
3838
run: echo "PROJECT_VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV
@@ -141,7 +141,7 @@ jobs:
141141
runs-on: ubuntu-24.04
142142
steps:
143143
- name: Checkout
144-
uses: actions/checkout@v6
144+
uses: actions/checkout@v7
145145

146146
- name: Set Up JDK
147147
uses: actions/setup-java@v5
@@ -200,7 +200,7 @@ jobs:
200200
runs-on: ubuntu-24.04
201201
steps:
202202
- name: Checkout
203-
uses: actions/checkout@v6
203+
uses: actions/checkout@v7
204204

205205
- name: Lint UI Project
206206
working-directory: api/src/main/webui
@@ -212,7 +212,7 @@ jobs:
212212
# runs-on: ubuntu-24.04
213213
# steps:
214214
# - name: Checkout
215-
# uses: actions/checkout@v6
215+
# uses: actions/checkout@v7
216216
#
217217
# - name: Build Storybook
218218
# working-directory: ./ui

.github/workflows/playwright-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
continue-on-error: true
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v6
16+
uses: actions/checkout@v7
1717

1818
- name: Set Up JDK
1919
uses: actions/setup-java@v5

.github/workflows/pre-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v6
15+
uses: actions/checkout@v7
1616
with:
1717
fetch-depth: 0
1818

.github/workflows/pre-systemtest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
GH_TOKEN: ${{ secrets.BOT_ORG_SCOPED_TOKEN }}
2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@v6
24+
uses: actions/checkout@v7
2525

2626
- name: Verify Team Member
2727
run: ./.github/actions/systemtests/verify-team-member.sh $ORG $TEAM "${{ github.event.comment.user.login }}"

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
# ==================== Setup ====================
2020
- name: Checkout
21-
uses: actions/checkout@v6
21+
uses: actions/checkout@v7
2222
with:
2323
token: ${{secrets.RELEASE_TOKEN}}
2424

.github/workflows/snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
# ==================== Setup ====================
2121
- name: Checkout
22-
uses: actions/checkout@v6
22+
uses: actions/checkout@v7
2323

2424
- name: Retrieve Project Metadata
2525
uses: smallrye/project-metadata-action@62527b4a896343d4c0c6b2a61eff07f6b59fcbd8

.github/workflows/sonar-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
## Checkout the source of the event that triggered this workflow,
2929
## PR commit (pull_request event) or commit (push event).
3030
- name: Checkout
31-
uses: actions/checkout@v6
31+
uses: actions/checkout@v7
3232
with:
3333
repository: ${{ github.event.workflow_run.head_repository.full_name }}
3434
ref: ${{ github.event.workflow_run.head_sha }}

.github/workflows/storybook.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout Repository
17-
uses: actions/checkout@v6
17+
uses: actions/checkout@v7
1818
with:
1919
fetch-depth: 0
2020

.github/workflows/systemtests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
matrix: ${{ steps.generate-matrix.outputs.matrix }}
4646
steps:
4747
- name: Checkout
48-
uses: actions/checkout@v6
48+
uses: actions/checkout@v7
4949
with:
5050
ref: ${{ env.COMMIT_SHA }}
5151

@@ -83,7 +83,7 @@ jobs:
8383
OLM_MINIKUBE_NAMESPACE: "olm"
8484
steps:
8585
- name: Checkout
86-
uses: actions/checkout@v6
86+
uses: actions/checkout@v7
8787
with:
8888
ref: ${{ env.COMMIT_SHA }}
8989

@@ -207,7 +207,7 @@ jobs:
207207
RETRY_COUNT: ${{ github.event.inputs.retry_count }}
208208
ENVS: ${{ github.event.inputs.envs }}
209209
steps:
210-
- uses: actions/checkout@v6
210+
- uses: actions/checkout@v7
211211
- name: Download all systemtest artifacts
212212
uses: actions/download-artifact@v8
213213
with:

0 commit comments

Comments
 (0)