diff options
| -rw-r--r-- | .github/workflows/deploy.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 310b432..27edbc7 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Run Build env: @@ -31,7 +31,7 @@ jobs: uv run build.py - name: Upload Build Artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: build-output path: ${{ github.workspace }}/.build/ @@ -46,10 +46,10 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Download Build Artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: name: build-output path: ${{ github.workspace }}/.build/ |
