diff --git a/.github/workflows/catalog-info.yml b/.github/workflows/catalog-info.yml index 3f4320ae16..b5fdc7b37a 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@v6 + - uses: actions/checkout@v7 - uses: elastic/oblt-actions/elastic/validate-catalog@v1 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2fde8a8228..026757d6d9 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@v6 + - uses: actions/checkout@v7 - 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@v6 + - uses: actions/checkout@v7 - uses: ./.github/workflows/unstash with: name: build @@ -153,7 +153,7 @@ jobs: timeout-minutes: 30 needs: build steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ./.github/workflows/unstash with: name: build @@ -180,7 +180,7 @@ jobs: runs-on: ubuntu-latest needs: build steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ./.github/workflows/unstash with: name: build @@ -219,7 +219,7 @@ jobs: runs-on: ubuntu-22.04 needs: build steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ./.github/workflows/unstash with: name: build @@ -254,7 +254,7 @@ jobs: needs: build timeout-minutes: 10 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - 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@v6 + - uses: actions/checkout@v7 - uses: ./.github/workflows/maven-goal with: command: ./mvnw install -DskipTests=true -Dmaven.javadoc.skip=true @@ -313,7 +313,7 @@ jobs: - version: '26-ea' distribution: 'temurin' steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - 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@v6 + - uses: actions/checkout@v7 - name: Log in to the Elastic Container registry uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0 diff --git a/.github/workflows/pre-post-release.yml b/.github/workflows/pre-post-release.yml index 7a8bae54d7..8e27dc6e3c 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@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 - name: Validate release tag does not exist in repo @@ -65,7 +65,7 @@ jobs: repositories: | apm-agent-java - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 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 5ac956b317..db56da9de5 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@v6 + - uses: actions/checkout@v7 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 26bd00bcc5..049501af7d 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@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} fetch-depth: 0 @@ -131,7 +131,7 @@ jobs: - await-maven-central-artifact - create-github-release steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} fetch-depth: 0 # Load entire history as it is required for the push-script @@ -155,7 +155,7 @@ jobs: outputs: arn_content: ${{ steps.arn_output.outputs.arn_content }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} - name: Build Lambda-layer zip using agent from maven-central @@ -210,7 +210,7 @@ jobs: runs-on: ubuntu-latest if: ${{ ! inputs.dry_run }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} - name: Await release-notes published diff --git a/.github/workflows/snapshot.yml b/.github/workflows/snapshot.yml index f639ef6f2c..36e1209470 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@v6 + uses: actions/checkout@v7 - name: Validate version is a snapshot version id: validate-step run: | @@ -78,7 +78,7 @@ jobs: name: "Build docker images" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Log in to the Elastic Container registry uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0 diff --git a/.github/workflows/updatecli.yml b/.github/workflows/updatecli.yml index 67970c474b..3ceb4e594c 100644 --- a/.github/workflows/updatecli.yml +++ b/.github/workflows/updatecli.yml @@ -15,7 +15,7 @@ jobs: contents: read packages: read steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Get token id: get_token