Skip to content

Commit e8fccdd

Browse files
build: bump the github-actions group across 2 directories with 2 updates (#912)
Bumps the github-actions group with 2 updates in the / directory: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Bumps the github-actions group with 2 updates in the /.github/workflows directory: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 4d356c0 commit e8fccdd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,21 +37,21 @@ jobs:
3737
- name: Create working dir archive
3838
run: "mkdir ./wdarch && tar --exclude='./wdarch' -czf ./wdarch/working-dir-build-cache.tar.gz ."
3939
- name: Cache working directory with build results
40-
uses: actions/upload-artifact@v5
40+
uses: actions/upload-artifact@v6
4141
with:
4242
name: working-dir-build-cache
4343
path: ./wdarch/working-dir-build-cache.tar.gz
4444
retention-days: 1 # No need to waste space when this artifact is only used as part of the build process
4545

4646
- name: Agent artifact
47-
uses: actions/upload-artifact@v5
47+
uses: actions/upload-artifact@v6
4848
with:
4949
name: elastic-otel-javaagent
5050
path: |
5151
./agent/build/libs/elastic-otel-javaagent-*.jar
5252
5353
- name: Agent extension artifact
54-
uses: actions/upload-artifact@v5
54+
uses: actions/upload-artifact@v6
5555
with:
5656
name: elastic-otel-agentextension
5757
path: |
@@ -87,7 +87,7 @@ jobs:
8787
steps:
8888
# We use the cached working directory so that we don't have to recompile everything
8989
- name: Download cached build working directory
90-
uses: actions/download-artifact@v6
90+
uses: actions/download-artifact@v7
9191
with:
9292
name: working-dir-build-cache
9393
path: ./
@@ -103,7 +103,7 @@ jobs:
103103
command: "./gradlew test -x compileJni -PtestJavaVersion=${{ matrix.version }} -PtestJavaVM=${{ matrix.vm }}"
104104
- name: Store test results
105105
if: success() || failure()
106-
uses: actions/upload-artifact@v5
106+
uses: actions/upload-artifact@v6
107107
with:
108108
name: test-results-${{ matrix.version }}-${{ matrix.vm }}
109109
path: '**/build/test-results/test/TEST-*.xml'

0 commit comments

Comments
 (0)