Skip to content

Commit 42eebf1

Browse files
authored
Revert actions/upload-artifact and actions/download-artifact bumps to v4 (#913)
* Revert "chore(deps): bump actions/download-artifact from 3 to 4" This reverts commit ef9794e. * Revert "chore(deps): bump actions/upload-artifact from 3 to 4" This reverts commit 9a26719.
1 parent 0e167c0 commit 42eebf1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: build for ${{ matrix.os }} ${{ matrix.arch }}
4646
run: make build GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }}
4747
- name: upload ${{ matrix.os }} ${{ matrix.arch }} artifact
48-
uses: actions/upload-artifact@v4
48+
uses: actions/upload-artifact@v3
4949
with:
5050
name: bin
5151
path: build/ktf.${{ matrix.os }}.${{ matrix.arch }}
@@ -59,7 +59,7 @@ jobs:
5959
run: sha256sum ktf.${{ matrix.os }}.${{ matrix.arch }} >> CHECKSUMS.${{ matrix.os }}.${{ matrix.arch }}
6060
working-directory: ./build/
6161
- name: upload checksum for ${{ matrix.os }} ${{ matrix.arch }}
62-
uses: actions/upload-artifact@v4
62+
uses: actions/upload-artifact@v3
6363
with:
6464
name: CHECKSUMS
6565
path: build/CHECKSUMS.${{ matrix.os }}.${{ matrix.arch }}
@@ -80,15 +80,15 @@ jobs:
8080
# --------------------------------------------------------------------------
8181

8282
- name: download checksums artifact
83-
uses: actions/download-artifact@v4
83+
uses: actions/download-artifact@v3
8484
with:
8585
name: CHECKSUMS
8686

8787
- name: concatenate all checksums
8888
run: cat CHECKSUMS.* > CHECKSUMS
8989

9090
- name: download binary artifacts
91-
uses: actions/download-artifact@v4
91+
uses: actions/download-artifact@v3
9292
with:
9393
name: bin
9494

0 commit comments

Comments
 (0)