Skip to content

chore(deps): bump actions/checkout from 4 to 5 #1144

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build-for-quarkus-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
echo "profiles: ${{ inputs.profiles }}"
echo "repository (workflow_call): ${{ inputs.repository }}"

- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ inputs.branch }}
repository: ${{ inputs.repository }}
Expand All @@ -134,7 +134,7 @@ jobs:
cache: 'maven'

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

- name: Check-out Quarkus if building from PR is requested
uses: actions/checkout@v4
uses: actions/checkout@v5
if: "${{ inputs.quarkus-pr != '' }}"
with:
repository: quarkusio/quarkus
Expand All @@ -182,7 +182,7 @@ jobs:
cd -

- name: Check-out Fabric8 client PR if requested
uses: actions/checkout@v4
uses: actions/checkout@v5
if: "${{ inputs.fkc-pr != '' && inputs.fkc-version == '' }}"
with:
repository: fabric8io/kubernetes-client
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
shell: bash
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
id: extract_branch
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Retrieve Quarkus version
id: quarkus-version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/quarkus-snapshot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ jobs:
java-version: ${{ env.JAVA_VERSION }}

- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: current-repo
ref: main

- name: Checkout Ecosystem
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: ${{ env.ECOSYSTEM_CI_REPO }}
path: ecosystem-ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-quarkus-platform-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
matrix:
quarkus-platform-branch: ${{ fromJson(inputs.quarkus-platform-branches) }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
repository: quarkusio/quarkus-platform
ref: ${{matrix.quarkus-platform-branch}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-snapshot-old.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: "${{inputs.branch}}"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
outputs:
version: ${{steps.snapshot-version.outputs.version}}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: "${{inputs.branch}}"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-update-quarkus-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
quarkus-platform-branches: ${{steps.qosdk-metadata.outputs.quarkus_platform_branches}}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{github.event.inputs.tag || github.ref_name}}

Expand Down
Loading