@@ -205,7 +205,7 @@ jobs:
205205 fi
206206
207207 - name : Upload agent jar
208- uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
208+ uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
209209 with :
210210 name : opentelemetry-javaagent.jar
211211 path : javaagent/build/libs/opentelemetry-javaagent-*-SNAPSHOT.jar
@@ -216,7 +216,7 @@ jobs:
216216 mkdir sboms
217217 cp javaagent/build/spdx/*.spdx.json sboms
218218
219- - uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
219+ - uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
220220 name : Upload SBOMs
221221 with :
222222 name : opentelemetry-java-instrumentation-SBOM.zip
@@ -273,7 +273,7 @@ jobs:
273273
274274 # vaadin tests use pnpm
275275 - name : Cache pnpm modules
276- uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
276+ uses : actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
277277 with :
278278 path : ~/.pnpm-store
279279 key : ${{ runner.os }}-test-cache-pnpm-modules
@@ -348,15 +348,15 @@ jobs:
348348
349349 - name : Upload deadlock detector artifacts if any
350350 if : failure()
351- uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
351+ uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
352352 with :
353353 name : deadlock-detector-test-${{ matrix.test-java-version }}-${{ matrix.vm }}-${{ matrix.test-partition }}
354354 path : /tmp/deadlock-detector-*
355355 if-no-files-found : ignore
356356
357357 - name : Upload jvm crash dump files if any
358358 if : failure()
359- uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
359+ uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
360360 with :
361361 name : javacore-test-${{ matrix.test-java-version }}-${{ matrix.test-partition }}
362362 path : |
@@ -416,11 +416,11 @@ jobs:
416416 run : ./gradlew :smoke-tests:test -PsmokeTestSuite=none --no-daemon ${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
417417
418418 - name : Test
419- run : ./gradlew :smoke-tests:test -PsmokeTestSuite=${{ matrix.smoke-test-suite }}${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
419+ run : ./gradlew :smoke-tests:test -PsmokeTestSuite=${{ matrix.smoke-test-suite }} ${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
420420
421421 - name : Upload jvm crash dump files if any
422422 if : failure()
423- uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
423+ uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
424424 with :
425425 name : javacore-smoke-test-${{ matrix.smoke-test-suite }}-${{ matrix.os }}
426426 # we expect crash dumps either in root director or in smoke-tests
@@ -490,13 +490,17 @@ jobs:
490490 working-directory : gradle-plugins
491491
492492 - name : Build distro
493- run : ./gradlew build --init-script ../../.github/scripts/local.init.gradle.kts${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
493+ run : ./gradlew build --init-script ../../.github/scripts/local.init.gradle.kts ${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
494494 working-directory : examples/distro
495495
496496 - name : Build extension
497- run : ./gradlew build --init-script ../../.github/scripts/local.init.gradle.kts${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
497+ run : ./gradlew build --init-script ../../.github/scripts/local.init.gradle.kts ${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
498498 working-directory : examples/extension
499499
500+ - name : Build benchmark-overhead
501+ run : ./gradlew assemble ${{ inputs.no-build-cache && ' --no-build-cache' || '' }}
502+ working-directory : benchmark-overhead
503+
500504 - name : Run muzzle check against extension
501505 run : ./gradlew muzzle --init-script ../../.github/scripts/local.init.gradle.kts
502506 working-directory : examples/extension
0 commit comments