Skip to content
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
26 changes: 13 additions & 13 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,50 +75,50 @@ jobs:
path: ${{ github.workspace }}

- name: Upload agent binaries as artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: elastic-apm-agent
path: |
./elastic-apm-agent/target/elastic-apm-agent-*.jar
!./**/*-sources.jar
- name: Upload agent java 8 binaries as artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: elastic-apm-agent-java8
path: |
./elastic-apm-agent-java8/target/elastic-apm-agent-java8-*.jar
!./**/*-sources.jar
- name: Upload agent attach CLI artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: apm-agent-attach-cli
path: |
./apm-agent-attach-cli/target/apm-agent-attach-cli-*.jar
!./**/*-sources.jar
!./**/*-tests.jar
- name: Upload agent attach artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: apm-agent-attach
path: |
./apm-agent-attach/target/apm-agent-attach-*.jar
!./**/*-sources.jar
- name: Upload agent API artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: apm-agent-api
path: |
./apm-agent-api/target/apm-agent-api-*.jar
!./**/*-sources.jar
- name: Upload agent plugin SDK artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: apm-agent-plugin-sdk
path: |
./apm-agent-plugin-sdk/target/apm-agent-plugin-sdk-*.jar
!./**/*-sources.jar
- name: Upload benchmark binaries as artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: apm-agent-benchmarks
path: |
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
command: ./mvnw test -DargLine="-Delastic.apm.overwrite.config.docs=false"
- name: Store test results
if: success() || failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: test-results-JUnit
path: |
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
command: ./mvnw -q -P ci-non-application-server-integration-tests verify
- name: Store test results
if: success() || failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: test-results-non-app-server-integration
path: |
Expand Down Expand Up @@ -241,7 +241,7 @@ jobs:
command: ./mvnw -q -P ci-application-server-integration-tests verify
- name: Store test results
if: success() || failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: test-results-app-server-integration
path: |
Expand Down Expand Up @@ -284,7 +284,7 @@ jobs:
run: ./mvnw test
- name: Store test results
if: success() || failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: test-results-windows
path: |
Expand Down Expand Up @@ -323,7 +323,7 @@ jobs:
run: ./mvnw test -Delastic.jdkCompatibilityTest=true -Dtest_java_binary=${{ env.TEST_JAVA_BINARY }}
- name: Store test results
if: success() || failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: test-results-jdk-compatibility-${{ matrix.version }}-${{ matrix.distribution }}
path: |
Expand Down Expand Up @@ -358,7 +358,7 @@ jobs:
command: ./mvnw -q -P ci-jboss-integration-tests verify
- name: Store test results
if: success() || failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: test-results-jboss-integration
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-step-3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ jobs:
VERSION=${VERSION//./-}

ELASTIC_LAYER_NAME="elastic-apm-java-${VERSION}" .ci/publish-aws.sh
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
if: ${{ ! inputs.dry_run }}
with:
name: arn-file
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stash/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ runs:
ARTIFACT_PATH: ${{ inputs.path }}

- name: Upload stash
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{ inputs.name }}
path: ${{ runner.temp }}/${{ inputs.name }}.tar.zst
2 changes: 1 addition & 1 deletion .github/workflows/unstash/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:
using: "composite"
steps:
- name: Download stash
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: ${{ inputs.name }}
path: ${{ runner.temp }}
Expand Down
Loading