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
8 changes: 4 additions & 4 deletions .github/workflows/release-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: bazel build //indexer:scip-clang --config release

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
path: bazel-bin/indexer/scip-clang
name: ${{ matrix.binary-name }}
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Download pre-built binary
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: ${{ matrix.binary-name }}
path: /tmp/binary
Expand All @@ -101,7 +101,7 @@ jobs:
touch "${{ runner.temp }}/digests/${digest#sha256:}"

- name: Upload digest
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: digests-${{ env.PLATFORM_PAIR }}
path: ${{ runner.temp }}/digests/*
Expand All @@ -113,7 +113,7 @@ jobs:
needs: [build-docker]
steps:
- name: Download digests
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
path: ${{ runner.temp }}/digests
pattern: digests-*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
OS: ${{ env.OS }}
CONFIG: ${{ matrix.config }}
- name: ${{ format('📦 Store binary ({0})', matrix.config) }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ matrix.platform }}-${{ matrix.config }}-release-artifacts
path: ${{ env.outBinaryPath }}
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
# Download everything to avoid spelling out the different
# platforms here.
- name: "📥 Download all artifacts"
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
- name: "📤 Upload artifacts for release"
run: gh release upload "${GITHUB_REF/refs\/tags\//}" ./*-release-artifacts/*
env:
Expand Down