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
6 changes: 3 additions & 3 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
test -f "${{ steps.resolve_pr.outputs.run_dir }}/report.md"

- name: Upload benchmark results
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: benchmark-results-pr-${{ github.event.number }}
path: |
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
echo "run_dir=$RUN_DIR" >> "$GITHUB_OUTPUT"

- name: Upload benchmark results
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: benchmark-results-${{ github.ref_name }}
path: |
Expand Down Expand Up @@ -255,7 +255,7 @@ jobs:
echo "run_dir=$RUN_DIR" >> "$GITHUB_OUTPUT"

- name: Upload results
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: benchmark-results-manual
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
pip install build
python -m build --sdist python/ --outdir dist/

- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: built-sdist
path: dist/*.tar.gz
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
CIBW_BUILD_FRONTEND: "build[uv]"
run: python -m cibuildwheel python --output-dir dist

- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: built-wheels-linux-${{ matrix.arch }}
path: dist/*.whl
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
CIBW_BUILD_FRONTEND: "build[uv]"
run: python -m cibuildwheel python --output-dir dist

- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: built-wheels-windows-${{ matrix.arch }}
path: dist/*.whl
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
MACOSX_DEPLOYMENT_TARGET: "13.3"
run: python -m cibuildwheel python --output-dir dist

- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: built-wheels-macos-${{ matrix.arch }}
path: dist/*.whl
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/csharp-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
cmake --build build --target bcsv_c_api --parallel

- name: Upload native library
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: native-${{ matrix.rid }}
path: ${{ matrix.lib-dir }}/${{ matrix.lib-name }}
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
unzip -l nupkg/*.nupkg | grep -E "runtimes|\.dll|\.so|\.dylib|README"

- name: Upload .nupkg
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: nuget-package
path: nupkg/*.nupkg
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unity-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
cmake --build build --target bcsv_c_api --parallel

- name: Upload native library
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: unity-native-${{ matrix.rid }}
path: ${{ matrix.lib-dir }}/${{ matrix.lib-name }}
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
tar -tzf "${TARBALL}" | head -50

- name: Upload .tgz
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: unity-package
path: com.bcsv.unity-*.tgz
Expand Down