From 381ee1e04a202f5236420ae37cddfeeb31518fb3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 Sep 2024 22:16:10 +0000 Subject: [PATCH] Bump actions/checkout from 4.1.7 to 4.2.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.7 to 4.2.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/692973e3d937129bcbf40652eb9f2f61becf3332...d632683dd7b4114ad314bca15554477dd762a938) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/camel-master-cron.yaml | 16 ++++++++-------- .github/workflows/ci-build.yaml | 16 ++++++++-------- .github/workflows/generate-sbom-main.yml | 2 +- .github/workflows/label-issue.yaml | 2 +- .github/workflows/pr-validate.yml | 2 +- .github/workflows/quarkus-master-cron.yaml | 16 ++++++++-------- .../workflows/synchronize-dependabot-branch.yaml | 2 +- 7 files changed, 28 insertions(+), 28 deletions(-) diff --git a/.github/workflows/camel-master-cron.yaml b/.github/workflows/camel-master-cron.yaml index 8b8f2c5d6e03..332b37b6af5d 100644 --- a/.github/workflows/camel-master-cron.yaml +++ b/.github/workflows/camel-master-cron.yaml @@ -53,7 +53,7 @@ jobs: [ ! -d ~/build-data ] && mkdir -p ~/build-data echo "${{ github.run_id }}-${{ github.run_number }}-$(uuidgen)" > ~/build-data/build-id.txt - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: camel-main fetch-depth: 0 @@ -154,7 +154,7 @@ jobs: rm -f ../maven-repo.tgz df -h / - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: camel-main fetch-depth: 0 @@ -241,7 +241,7 @@ jobs: rm -f ../maven-repo.tgz df -h / - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: camel-main fetch-depth: 0 @@ -343,7 +343,7 @@ jobs: rm -f ../maven-repo.tgz df -h / - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: camel-main fetch-depth: 0 @@ -397,7 +397,7 @@ jobs: rm -f ../maven-repo.tgz df -h / - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: camel-main fetch-depth: 0 @@ -452,7 +452,7 @@ jobs: tar -xzf ../maven-repo.tgz -C ~ rm -f ../maven-repo.tgz - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: camel-main fetch-depth: 0 @@ -512,7 +512,7 @@ jobs: rm -f ../maven-repo.tgz df -h / - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: camel-main fetch-depth: 0 @@ -597,7 +597,7 @@ jobs: rm -f ../maven-repo.tgz df -h / - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: camel-main fetch-depth: 0 diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index 493f672671da..60b9a6bfddb7 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -106,7 +106,7 @@ jobs: distribution: 'temurin' java-version: '17' - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 if: steps.init.outputs.run-checks == 'true' with: ref: ${{ env.CHECKOUT_REF }} @@ -177,7 +177,7 @@ jobs: && sed -i '/integration-tests<\/module>/d' pom.xml \ && ./mvnw ${CQ_MAVEN_ARGS} clean install -Dquickly -Prelocations -T1C - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: ${{ env.CHECKOUT_REF }} fetch-depth: 0 @@ -244,7 +244,7 @@ jobs: matrix: ${{ fromJson(needs.initial-mvn-install.outputs.matrix) }} steps: - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: ${{ env.CHECKOUT_REF }} fetch-depth: 0 @@ -322,7 +322,7 @@ jobs: MAVEN_OPTS: -Xmx3000m steps: - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: ${{ env.CHECKOUT_REF }} fetch-depth: 0 @@ -414,7 +414,7 @@ jobs: MAVEN_OPTS: -Xmx3000m steps: - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: ${{ env.CHECKOUT_REF }} fetch-depth: 0 @@ -460,7 +460,7 @@ jobs: MAVEN_OPTS: -Xmx3000m steps: - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: ${{ env.CHECKOUT_REF }} fetch-depth: 0 @@ -512,7 +512,7 @@ jobs: MAVEN_OPTS: -Xmx3000m steps: - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: ${{ env.CHECKOUT_REF }} fetch-depth: 0 @@ -561,7 +561,7 @@ jobs: matrix: ${{ fromJson(needs.initial-mvn-install.outputs.examples-matrix) }} steps: - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 - name: Set up JDK 17 uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 # v4.4.0 with: diff --git a/.github/workflows/generate-sbom-main.yml b/.github/workflows/generate-sbom-main.yml index c956ce48671b..77eca89f45aa 100644 --- a/.github/workflows/generate-sbom-main.yml +++ b/.github/workflows/generate-sbom-main.yml @@ -41,7 +41,7 @@ jobs: matrix: java: [ '17' ] steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: persist-credentials: false - name: Set up JDK ${{ matrix.java }} diff --git a/.github/workflows/label-issue.yaml b/.github/workflows/label-issue.yaml index f4137e2674d6..d67b81aa38fa 100644 --- a/.github/workflows/label-issue.yaml +++ b/.github/workflows/label-issue.yaml @@ -41,7 +41,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: main - name: Install js-yaml package diff --git a/.github/workflows/pr-validate.yml b/.github/workflows/pr-validate.yml index ff4aec5b00b6..fc77dbd79330 100644 --- a/.github/workflows/pr-validate.yml +++ b/.github/workflows/pr-validate.yml @@ -70,7 +70,7 @@ jobs: if: github.base_ref == 'quarkus-main' run: | echo "BRANCH_OPTIONS=-Poss-snapshots" >> $GITHUB_ENV - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 - name: Set up JDK 17 uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 # v4.4.0 with: diff --git a/.github/workflows/quarkus-master-cron.yaml b/.github/workflows/quarkus-master-cron.yaml index 3412cb571eb7..84b7553411d7 100644 --- a/.github/workflows/quarkus-master-cron.yaml +++ b/.github/workflows/quarkus-master-cron.yaml @@ -53,7 +53,7 @@ jobs: [ ! -d ~/build-data ] && mkdir -p ~/build-data echo "${{ github.run_id }}-${{ github.run_number }}-$(uuidgen)" > ~/build-data/build-id.txt - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: quarkus-main fetch-depth: 0 @@ -155,7 +155,7 @@ jobs: rm -f ../maven-repo.tgz df -h / - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: quarkus-main fetch-depth: 0 @@ -242,7 +242,7 @@ jobs: rm -f ../maven-repo.tgz df -h / - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: quarkus-main fetch-depth: 0 @@ -344,7 +344,7 @@ jobs: rm -f ../maven-repo.tgz df -h / - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: quarkus-main fetch-depth: 0 @@ -398,7 +398,7 @@ jobs: rm -f ../maven-repo.tgz df -h / - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: quarkus-main fetch-depth: 0 @@ -453,7 +453,7 @@ jobs: tar -xzf ../maven-repo.tgz -C ~ rm -f ../maven-repo.tgz - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: quarkus-main fetch-depth: 0 @@ -513,7 +513,7 @@ jobs: rm -f ../maven-repo.tgz df -h / - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: quarkus-main fetch-depth: 0 @@ -598,7 +598,7 @@ jobs: rm -f ../maven-repo.tgz df -h / - name: Checkout - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 with: ref: quarkus-main fetch-depth: 0 diff --git a/.github/workflows/synchronize-dependabot-branch.yaml b/.github/workflows/synchronize-dependabot-branch.yaml index 42d9ae2c466f..c261624029d9 100644 --- a/.github/workflows/synchronize-dependabot-branch.yaml +++ b/.github/workflows/synchronize-dependabot-branch.yaml @@ -74,7 +74,7 @@ jobs: echo "pr-number=$(cat /home/runner/work/dependabot-pr/PR_NUMBER)" >> $GITHUB_OUTPUT fi - name: Checkout dependabot branch - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 if: steps.setup-dependabot-patches.outputs.branch-ref != '' with: ref: ${{ steps.setup-dependabot-patches.outputs.branch-ref }}