Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/autotools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
cp bazel-bin/compile/autotools-${FULL_VERSION}.tar.xz \
bazel-bin/compile/autotools-${FULL_VERSION}-${{ matrix.arch }}.tar.xz
- name: Upload autotools ${{ matrix.arch }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: >-
autotools-${{
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/py.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
- name: Run pants test
run: "pants --colors test ::"
- name: Archive code coverage results
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: coverage
path: dist/coverage/python/htmlcov/
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
- name: Run pants package
run: "pants --colors package ::"
- name: Archive created packages
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: packages
path: dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
cp rust/target/release/glint glint-${{ steps.version.outputs.version }}-${{ matrix.arch }}

- name: Upload glint binary
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: glint-${{ steps.version.outputs.version }}-${{ matrix.arch }}
path: glint-${{ steps.version.outputs.version }}-${{ matrix.arch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sanitizer-libs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
cd bazel
bazel build //compile:cxx_${{ matrix.sanitizer }}
- name: Upload ${{ matrix.sanitizer }} libraries
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ matrix.sanitizer }}-llvm18.1.8-x86_64
path: bazel/bazel-bin/compile/${{ matrix.sanitizer }}-llvm18.1.8-x86_64.tar.xz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
publish_results: true

- name: "Upload artifact"
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: SARIF file
path: results.sarif
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sysroot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
.
fi
- name: Upload ${{ matrix.arch }} ${{ matrix.variant }} sysroot
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: >-
sysroot-glibc${{
Expand Down
Loading