From 28f9580a5796876225af9eec1e015bb883a25171 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 17 Aug 2025 22:48:38 +0000 Subject: [PATCH] build: bump the github-actions group across 2 directories with 1 update Bumps the github-actions group with 1 update in the / directory: [actions/checkout](https://github.com/actions/checkout). Bumps the github-actions group with 1 update in the /.github/workflows directory: [actions/checkout](https://github.com/actions/checkout). Updates `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](https://github.com/actions/checkout/compare/v4...v5) Updates `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](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/catalog-info.yml | 2 +- .github/workflows/main.yml | 18 +++++++++--------- .github/workflows/pre-post-release.yml | 4 ++-- .github/workflows/regenerate-docker-images.yml | 2 +- .github/workflows/release-step-3.yml | 8 ++++---- .github/workflows/snapshot.yml | 4 ++-- .github/workflows/updatecli.yml | 2 +- 7 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/catalog-info.yml b/.github/workflows/catalog-info.yml index 47103e0d5e..3d8c23cf4b 100644 --- a/.github/workflows/catalog-info.yml +++ b/.github/workflows/catalog-info.yml @@ -18,7 +18,7 @@ jobs: contents: read packages: read steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: elastic/oblt-actions/elastic/validate-catalog@v1 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c2cc964107..634afa93d3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -65,7 +65,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 20 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./.github/workflows/maven-goal with: command: ./mvnw install -DskipTests=true -Dmaven.javadoc.skip=true @@ -131,7 +131,7 @@ jobs: needs: build timeout-minutes: 10 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./.github/workflows/unstash with: name: build @@ -153,7 +153,7 @@ jobs: timeout-minutes: 30 needs: build steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./.github/workflows/unstash with: name: build @@ -180,7 +180,7 @@ jobs: runs-on: ubuntu-latest needs: build steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./.github/workflows/unstash with: name: build @@ -219,7 +219,7 @@ jobs: runs-on: ubuntu-22.04 needs: build steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./.github/workflows/unstash with: name: build @@ -254,7 +254,7 @@ jobs: needs: build timeout-minutes: 10 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./.github/workflows/unstash with: name: build @@ -276,7 +276,7 @@ jobs: steps: - name: Support longpaths run: git config --system core.longpaths true - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./.github/workflows/maven-goal with: command: ./mvnw install -DskipTests=true -Dmaven.javadoc.skip=true @@ -313,7 +313,7 @@ jobs: - version: '25-ea' distribution: 'temurin' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./.github/workflows/maven-goal-jdk with: test-java-version: ${{ matrix.version }} @@ -338,7 +338,7 @@ jobs: # If no PR event or if a PR event that's caused by a non-fork and non dependabot actor if: github.event_name != 'pull_request' || ( github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == false && github.actor != 'dependabot[bot]' ) steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Log in to the Elastic Container registry uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0 diff --git a/.github/workflows/pre-post-release.yml b/.github/workflows/pre-post-release.yml index adadd6828d..5283ca32ff 100644 --- a/.github/workflows/pre-post-release.yml +++ b/.github/workflows/pre-post-release.yml @@ -40,7 +40,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 - name: Validate release tag does not exist in repo @@ -68,7 +68,7 @@ jobs: repositories: >- ["apm-agent-java"] - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: ${{ inputs.ref }} token: ${{ steps.get_token.outputs.token }} diff --git a/.github/workflows/regenerate-docker-images.yml b/.github/workflows/regenerate-docker-images.yml index 31b7c970ca..0d6ddcd5d1 100644 --- a/.github/workflows/regenerate-docker-images.yml +++ b/.github/workflows/regenerate-docker-images.yml @@ -30,7 +30,7 @@ jobs: name: "Build and push docker images" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: ${{ inputs.ref }} fetch-depth: 0 # Load entire history as it is required for the push-script diff --git a/.github/workflows/release-step-3.yml b/.github/workflows/release-step-3.yml index 26aba767ff..0b5d4524d1 100644 --- a/.github/workflows/release-step-3.yml +++ b/.github/workflows/release-step-3.yml @@ -49,7 +49,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ inputs.ref }} fetch-depth: 0 @@ -130,7 +130,7 @@ jobs: - await-maven-central-artifact - create-github-release steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: ${{ inputs.ref }} fetch-depth: 0 # Load entire history as it is required for the push-script @@ -154,7 +154,7 @@ jobs: outputs: arn_content: ${{ steps.arn_output.outputs.arn_content }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: ${{ inputs.ref }} - name: Build Lambda-layer zip using agent from maven-central @@ -211,7 +211,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: ${{ inputs.ref }} - name: Await release-notes published diff --git a/.github/workflows/snapshot.yml b/.github/workflows/snapshot.yml index 7f5e68c7fa..4789dd7bae 100644 --- a/.github/workflows/snapshot.yml +++ b/.github/workflows/snapshot.yml @@ -22,7 +22,7 @@ jobs: is-snapshot: ${{ steps.validate-step.outputs.is-snapshot }} steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Validate version is a snapshot version id: validate-step run: | @@ -77,7 +77,7 @@ jobs: name: "Build docker images" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Log in to the Elastic Container registry uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0 diff --git a/.github/workflows/updatecli.yml b/.github/workflows/updatecli.yml index 44bffbfcd2..e888cd77c3 100644 --- a/.github/workflows/updatecli.yml +++ b/.github/workflows/updatecli.yml @@ -15,7 +15,7 @@ jobs: contents: read packages: read steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Get token id: get_token