Skip to content

Commit 89b2bc0

Browse files
chore(deps): update github artifact actions
1 parent b0eb7d0 commit 89b2bc0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/release-docker.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: bazel build //indexer:scip-clang --config release
3535

3636
- name: Upload artifacts
37-
uses: actions/upload-artifact@v4
37+
uses: actions/upload-artifact@v5
3838
with:
3939
path: bazel-bin/indexer/scip-clang
4040
name: ${{ matrix.binary-name }}
@@ -77,7 +77,7 @@ jobs:
7777
uses: docker/setup-buildx-action@v3
7878

7979
- name: Download pre-built binary
80-
uses: actions/download-artifact@v4
80+
uses: actions/download-artifact@v6
8181
with:
8282
name: ${{ matrix.binary-name }}
8383
path: /tmp/binary
@@ -101,7 +101,7 @@ jobs:
101101
touch "${{ runner.temp }}/digests/${digest#sha256:}"
102102
103103
- name: Upload digest
104-
uses: actions/upload-artifact@v4
104+
uses: actions/upload-artifact@v5
105105
with:
106106
name: digests-${{ env.PLATFORM_PAIR }}
107107
path: ${{ runner.temp }}/digests/*
@@ -113,7 +113,7 @@ jobs:
113113
needs: [build-docker]
114114
steps:
115115
- name: Download digests
116-
uses: actions/download-artifact@v4
116+
uses: actions/download-artifact@v6
117117
with:
118118
path: ${{ runner.temp }}/digests
119119
pattern: digests-*

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
OS: ${{ env.OS }}
121121
CONFIG: ${{ matrix.config }}
122122
- name: ${{ format('📦 Store binary ({0})', matrix.config) }}
123-
uses: actions/upload-artifact@v4
123+
uses: actions/upload-artifact@v5
124124
with:
125125
name: ${{ matrix.platform }}-${{ matrix.config }}-release-artifacts
126126
path: ${{ env.outBinaryPath }}
@@ -148,7 +148,7 @@ jobs:
148148
# Download everything to avoid spelling out the different
149149
# platforms here.
150150
- name: "📥 Download all artifacts"
151-
uses: actions/download-artifact@v4
151+
uses: actions/download-artifact@v6
152152
- name: "📤 Upload artifacts for release"
153153
run: gh release upload "${GITHUB_REF/refs\/tags\//}" ./*-release-artifacts/*
154154
env:

0 commit comments

Comments
 (0)