chore(ci): downgrade actions/upload-artifact and actions/download-artifact to version 3 in build workflow
All checks were successful
Build Backend / build (push) Successful in 19m32s
Build Backend / build-docker (push) Successful in 1m0s

This commit is contained in:
lafay
2026-03-23 14:38:39 +08:00
parent 081e44c4ff
commit ab4ee30690

View File

@@ -47,7 +47,7 @@ jobs:
run: go build -v -o server ./cmd/server
- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: backend-server-linux-amd64
path: server
@@ -70,7 +70,7 @@ jobs:
password: ${{ secrets.GIT_TOKEN }}
- name: Download artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: backend-server-linux-amd64