Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
# Make the image available as an artifact so other jobs will be able to
# download it.
- name: Upload image archive as an artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ env.artifact }}
path: ${{ env.artifact }}.tar
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Download image artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ inputs.artifact }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download image artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ inputs.artifact }}

Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:

# Upload it so the coverage from all matrix jobs can be combined later.
- name: Upload coverage data
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage
path: .coverage
Expand All @@ -70,7 +70,7 @@ jobs:
run: pip install -U -r requirements/coverage.pip

- name: Download coverage data
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
pattern: coverage
merge-multiple: true
Expand All @@ -95,7 +95,7 @@ jobs:
needs: test
steps:
- name: Download image artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ inputs.artifact }}

Expand Down