diff --git a/.github/workflows/build-centos-native-container.yml b/.github/workflows/build-centos-native-container.yml index 91bc99dade..7ef56ba24a 100644 --- a/.github/workflows/build-centos-native-container.yml +++ b/.github/workflows/build-centos-native-container.yml @@ -25,7 +25,7 @@ jobs: /bin/sh -c 'git config --global --add safe.directory /project && ./build.sh BuildNativeWorkflow' - name: Publish native library Linux build - uses: actions/upload-artifact@v4.2.0 + uses: actions/upload-artifact@v4.3.0 with: name: bin-centos-native path: bin/tracer-home diff --git a/.github/workflows/build-container.yml b/.github/workflows/build-container.yml index 03dfbbe8c0..10334a719f 100644 --- a/.github/workflows/build-container.yml +++ b/.github/workflows/build-container.yml @@ -40,7 +40,7 @@ jobs: test "$(ls -A /var/log/opentelemetry/dotnet )" ' - name: Publish Linux build - uses: actions/upload-artifact@v4.2.0 + uses: actions/upload-artifact@v4.3.0 with: name: bin-${{ matrix.base-image }} path: bin/tracer-home diff --git a/.github/workflows/build-nuget-packages.yml b/.github/workflows/build-nuget-packages.yml index 4cbb09a8d5..e6560c28c2 100644 --- a/.github/workflows/build-nuget-packages.yml +++ b/.github/workflows/build-nuget-packages.yml @@ -88,7 +88,7 @@ jobs: } - name: Upload Nuget Artifacts - uses: actions/upload-artifact@v4.2.0 + uses: actions/upload-artifact@v4.3.0 with: name: bin-nuget-packages path: bin/nuget-artifacts/ diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1c558fecf1..45bf8190bd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -91,13 +91,13 @@ jobs: if (-not $?) { throw "dotnet help returned exit code: $LASTEXITCODE" } if (Test-Path $log_path) { throw "Log file exists. Instrumentation unregister failed." } - name: Upload binaries - uses: actions/upload-artifact@v4.2.0 + uses: actions/upload-artifact@v4.3.0 if: always() with: name: bin-${{ matrix.machine }} path: bin/tracer-home - name: Upload installation scripts - uses: actions/upload-artifact@v4.2.0 + uses: actions/upload-artifact@v4.3.0 if: always() with: name: installation-scripts-${{ matrix.machine }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7490f27231..847ed9663b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -74,7 +74,7 @@ jobs: install: localdb - run: ./build.cmd --skip NativeTests --target TestWorkflow --test-target-framework ${{ matrix.test-tfm }} --containers ${{ matrix.containers }} - name: Upload test logs - uses: actions/upload-artifact@v4.2.0 + uses: actions/upload-artifact@v4.3.0 if: always() with: name: test-logs-${{ matrix.machine }}-${{ matrix.test-tfm }}-containers-${{ matrix.containers }} @@ -150,7 +150,7 @@ jobs: - name: Run the integration tests run: ./build.cmd --target RunManagedIntegrationTests --containers ${{ matrix.containers }} - name: Upload test logs - uses: actions/upload-artifact@v4.2.0 + uses: actions/upload-artifact@v4.3.0 if: always() with: name: test-logs-${{ matrix.machine }}-containers-${{ matrix.containers }} diff --git a/.github/workflows/verify-test.yml b/.github/workflows/verify-test.yml index 5db40a2222..7221076f9c 100644 --- a/.github/workflows/verify-test.yml +++ b/.github/workflows/verify-test.yml @@ -35,7 +35,7 @@ jobs: 8.0.101 - run: ./build.cmd BuildTracer ManagedTests --containers ${{ matrix.containers }} --test-project "${{ github.event.inputs.testProject }}" --test-name '"${{ github.event.inputs.testName }}"' --test-count ${{ github.event.inputs.count }} - name: Upload logs - uses: actions/upload-artifact@v4.2.0 + uses: actions/upload-artifact@v4.3.0 if: always() with: name: logs-${{ matrix.machine }}