chore(deps): update github artifact actions

This commit is contained in:
renovate[bot]
2025-12-13 12:42:17 +00:00
committed by GitHub
parent 58f7453b0b
commit 4b4d63b289
2 changed files with 4 additions and 4 deletions

View File

@@ -22,7 +22,7 @@ jobs:
cache: "yarn" cache: "yarn"
- run: "yarn install" - run: "yarn install"
- run: "yarn build" - run: "yarn build"
- uses: "actions/upload-artifact@v5" - uses: "actions/upload-artifact@v6"
with: with:
name: "frontend" name: "frontend"
path: "dist" path: "dist"
@@ -59,7 +59,7 @@ jobs:
- run: "poetry lock" - run: "poetry lock"
- run: "poetry install" - run: "poetry install"
- run: "poetry run python yacv_server/logo.py" - run: "poetry run python yacv_server/logo.py"
- uses: "actions/upload-artifact@v5" - uses: "actions/upload-artifact@v6"
with: with:
name: "logo" name: "logo"
path: "assets/logo_build" path: "assets/logo_build"
@@ -80,7 +80,7 @@ jobs:
- run: "poetry lock" - run: "poetry lock"
- run: "poetry install" - run: "poetry install"
- run: "YACV_DISABLE_SERVER=true poetry run python example/object.py" - run: "YACV_DISABLE_SERVER=true poetry run python example/object.py"
- uses: "actions/upload-artifact@v5" - uses: "actions/upload-artifact@v6"
with: with:
name: "example" name: "example"
path: "export" path: "export"

View File

@@ -32,7 +32,7 @@ jobs:
name: "github-pages" name: "github-pages"
url: "${{ steps.deployment.outputs.page_url }}" url: "${{ steps.deployment.outputs.page_url }}"
steps: steps:
- uses: "actions/download-artifact@v6" - uses: "actions/download-artifact@v7"
with: # Downloads all artifacts from the build job with: # Downloads all artifacts from the build job
path: "./public" path: "./public"
merge-multiple: true merge-multiple: true