Skip to content

Commit

Permalink
Bump actions/upload-artifact from 4.2.0 to 4.3.0 (open-telemetry#3245)
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.2.0 to 4.3.0.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v4.2.0...v4.3.0)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jan 24, 2024
1 parent 7c3ff2d commit 178a2b3
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-centos-native-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-nuget-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 178a2b3

Please sign in to comment.