Skip to content

Commit ca083b0

Browse files
committed
2 parents f995f20 + 25b1aeb commit ca083b0

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
mv api-benchmark_result.json benchmarks
4040
mv sdk-benchmark_result.json benchmarks
4141
mv exporters-benchmark_result.json benchmarks
42-
- uses: actions/upload-artifact@2d9f9cdfa99fedaddba68e9b5b5c281eca26cc63 # main March 2025
42+
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # main March 2025
4343
with:
4444
name: benchmark_results
4545
path: benchmarks

.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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
- name: Install LLVM with winget (ignore if already installed)
102102
shell: pwsh
103103
run: |
104-
winget install -e LLVM.LLVM -v 21.1.3 --accept-package-agreements --disable-interactivity --silent
104+
winget install -e LLVM.LLVM -v 21.1.4 --accept-package-agreements --disable-interactivity --silent
105105
if ($LASTEXITCODE -ne 0) {
106106
Write-Host "Winget install failed or not needed (already installed)"
107107
exit 0
@@ -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

MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ bazel_dep(name = "depend_on_what_you_use", version = "0.10.0")
3030
bazel_dep(name = "google_benchmark", version = "1.9.4")
3131
bazel_dep(name = "googletest", version = "1.17.0.bcr.1")
3232
bazel_dep(name = "re2", version = "2024-07-02.bcr.1")
33-
bazel_dep(name = "rules_go", version = "0.57.0")
33+
bazel_dep(name = "rules_go", version = "0.58.2")
3434
bazel_dep(name = "gazelle", version = "0.45.0")
3535
bazel_dep(name = "stardoc", version = "0.8.0")
3636
bazel_dep(name = "rules_android", version = "0.6.6")
3737
bazel_dep(name = "grpc", version = "1.74.1")
3838
bazel_dep(name = "nlohmann_json", version = "3.12.0")
3939
bazel_dep(name = "platforms", version = "1.0.0")
40-
bazel_dep(name = "rules_cc", version = "0.2.11")
40+
bazel_dep(name = "rules_cc", version = "0.2.12")
4141
bazel_dep(name = "rules_pkg", version = "1.1.0")
4242
bazel_dep(name = "rules_proto", version = "7.1.0")
4343
bazel_dep(name = "zlib", version = "1.3.1.bcr.7")

x/MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ bazel_dep(name = "depend_on_what_you_use", version = "0.10.0")
2626
bazel_dep(name = "google_benchmark", version = "1.9.4")
2727
bazel_dep(name = "googletest", version = "1.17.0.bcr.1")
2828
bazel_dep(name = "re2", version = "2024-07-02.bcr.1")
29-
bazel_dep(name = "rules_go", version = "0.57.0")
29+
bazel_dep(name = "rules_go", version = "0.58.2")
3030
bazel_dep(name = "gazelle", version = "0.45.0")
3131
bazel_dep(name = "stardoc", version = "0.8.0")
3232
bazel_dep(name = "rules_android", version = "0.6.6")
3333
bazel_dep(name = "grpc", version = "1.74.1")
3434
bazel_dep(name = "nlohmann_json", version = "3.12.0")
3535
bazel_dep(name = "platforms", version = "1.0.0")
36-
bazel_dep(name = "rules_cc", version = "0.2.11")
36+
bazel_dep(name = "rules_cc", version = "0.2.12")
3737
bazel_dep(name = "rules_pkg", version = "1.1.0")
3838
bazel_dep(name = "rules_proto", version = "7.1.0")
3939
bazel_dep(name = "zlib", version = "1.3.1.bcr.7")

0 commit comments

Comments
 (0)