Skip to content

Commit 11e1514

Browse files
dependabot[bot]metacosm
authored andcommitted
chore(deps): bump actions/checkout from 4 to 5
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>
1 parent c6f8bdb commit 11e1514

8 files changed

+12
-12
lines changed

.github/workflows/build-for-quarkus-version.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
echo "profiles: ${{ inputs.profiles }}"
122122
echo "repository (workflow_call): ${{ inputs.repository }}"
123123
124-
- uses: actions/checkout@v4
124+
- uses: actions/checkout@v5
125125
with:
126126
ref: ${{ inputs.branch }}
127127
repository: ${{ inputs.repository }}
@@ -134,7 +134,7 @@ jobs:
134134
cache: 'maven'
135135

136136
- name: Check-out JOSDK if building from PR is requested
137-
uses: actions/checkout@v4
137+
uses: actions/checkout@v5
138138
if: "${{ inputs.josdk-pr != '' }}"
139139
with:
140140
repository: operator-framework/java-operator-sdk
@@ -163,7 +163,7 @@ jobs:
163163
run: ./mvnw versions:set-property -Dproperty='java-operator-sdk.version' -DnewVersion=${{ steps.build-josdk-pr.outputs.josdk_version }}
164164

165165
- name: Check-out Quarkus if building from PR is requested
166-
uses: actions/checkout@v4
166+
uses: actions/checkout@v5
167167
if: "${{ inputs.quarkus-pr != '' }}"
168168
with:
169169
repository: quarkusio/quarkus
@@ -182,7 +182,7 @@ jobs:
182182
cd -
183183
184184
- name: Check-out Fabric8 client PR if requested
185-
uses: actions/checkout@v4
185+
uses: actions/checkout@v5
186186
if: "${{ inputs.fkc-pr != '' && inputs.fkc-version == '' }}"
187187
with:
188188
repository: fabric8io/kubernetes-client

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
shell: bash
4242
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
4343
id: extract_branch
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v5
4545

4646
- name: Retrieve Quarkus version
4747
id: quarkus-version

.github/workflows/codeql-analysis.yml

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

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

.github/workflows/quarkus-snapshot.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ jobs:
3333
java-version: ${{ env.JAVA_VERSION }}
3434

3535
- name: Checkout repo
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3737
with:
3838
path: current-repo
3939
ref: main
4040

4141
- name: Checkout Ecosystem
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
4343
with:
4444
repository: ${{ env.ECOSYSTEM_CI_REPO }}
4545
path: ecosystem-ci

.github/workflows/release-quarkus-platform-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
matrix:
1919
quarkus-platform-branch: ${{ fromJson(inputs.quarkus-platform-branches) }}
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
with:
2323
repository: quarkusio/quarkus-platform
2424
ref: ${{matrix.quarkus-platform-branch}}

.github/workflows/release-snapshot-old.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-latest
3434

3535
steps:
36-
- uses: actions/checkout@v4
36+
- uses: actions/checkout@v5
3737
with:
3838
ref: "${{inputs.branch}}"
3939

.github/workflows/release-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
outputs:
4343
version: ${{steps.snapshot-version.outputs.version}}
4444
steps:
45-
- uses: actions/checkout@v4
45+
- uses: actions/checkout@v5
4646
with:
4747
ref: "${{inputs.branch}}"
4848

.github/workflows/release-update-quarkus-platform.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
quarkus-platform-branches: ${{steps.qosdk-metadata.outputs.quarkus_platform_branches}}
2525

2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828
with:
2929
ref: ${{github.event.inputs.tag || github.ref_name}}
3030

0 commit comments

Comments
 (0)