Skip to content

Commit c7476af

Browse files
Update GitHub Artifact Actions to v5
1 parent b3a36d9 commit c7476af

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -946,7 +946,7 @@ jobs:
946946
env BENCHMARK_DIR=/benchmark
947947
./ci/do_ci.sh benchmark
948948
- name: Upload benchmark results
949-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
949+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
950950
with:
951951
name: benchmark_reports
952952
path: /home/runner/benchmark

.github/workflows/clang-tidy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
run: |
8282
cmake --build build-${{ matrix.cmake_options }} -- -j$(nproc) 2>&1 | tee clang-tidy-${{ matrix.cmake_options }}.log
8383
84-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
84+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
8585
with:
8686
name: Logs-clang-tidy-${{ matrix.cmake_options }}
8787
path: ./clang-tidy-${{ matrix.cmake_options }}.log

.github/workflows/cppcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
-j $(nproc) \
5656
. 2>&1 | tee --append cppcheck.log
5757
58-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
58+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
5959
if: success() || failure()
6060
with:
6161
name: Logs (cppcheck)

.github/workflows/dependencies_image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
docker save -o /opt/otel-cpp-deps-debian.tar otel-cpp-deps
4848
-
4949
name: Upload Image
50-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
50+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
5151
with:
5252
name: otel-cpp-deps
5353
path: /opt/otel-cpp-deps-debian.tar

.github/workflows/iwyu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
run: |
8080
cmake --build build-${{ matrix.cmake_options }} -- -j$(nproc) -k 2>&1 | tee -a iwyu-${{ matrix.cmake_options }}.log
8181
82-
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
82+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
8383
if: success() || failure()
8484
with:
8585
name: Logs-iwyu-${{ matrix.cmake_options }}

.github/workflows/ossf-scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
# uploads of run results in SARIF format to the repository Actions tab.
3939
# https://docs.github.com/en/actions/advanced-guides/storing-workflow-data-as-artifacts
4040
- name: "Upload artifact"
41-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
41+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
4242
with:
4343
name: SARIF file
4444
path: results.sarif

.github/workflows/otel_sdk.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ jobs:
165165
enableCrossOsArchive: true
166166
key: ${{ runner.os }}-bazel-${{ hashFiles('.bazelversion', '.bazelrc', 'MODULE.bazel', 'MODULE.bazel.lock') }}
167167
- run: Mount-VHD -Path "${{ env.VHDX_FILE }}" -NoDriveLetter -Verbose -PassThru | Out-Host
168-
- uses: actions/upload-artifact@v4
168+
- uses: actions/upload-artifact@v5
169169
with:
170170
name: tracing-profiles
171171
path: ./*.tracing.json
@@ -178,7 +178,7 @@ jobs:
178178
- run: cmd /c "dir c:\ || echo swallowing errors"
179179
- run: cmd /c "dir d:\ || echo swallowing errors"
180180
- run: ls ${{ env.VHDX_FILE }}
181-
- uses: actions/upload-artifact@v4
181+
- uses: actions/upload-artifact@v5
182182
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
183183
with:
184184
name: sdk

0 commit comments

Comments
 (0)