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
14 changes: 7 additions & 7 deletions .github/workflows/_validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ jobs:
echo "artifact-name=validate-build-artifacts" >> $GITHUB_OUTPUT

- name: Store artifact | Store build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ steps.set-outputs.outputs.artifact-name }}
path: ${{ steps.set-outputs.outputs.dist-path }}
Expand Down Expand Up @@ -264,7 +264,7 @@ jobs:
CONTEXT: ${{ runner.os }}-py${{ matrix.python-version }}

- name: Store artifact | Store coverage files
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-${{ matrix.os }}-${{ matrix.python-version }}
path: coverage
Expand Down Expand Up @@ -301,7 +301,7 @@ jobs:
install-project-with-group: test

- name: Get artifact | Get build artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ needs.build.outputs.distribution-artifacts }}
path: ${{ needs.build.outputs.distribution-path }}
Expand All @@ -315,7 +315,7 @@ jobs:
CONTEXT: ${{ runner.os }}-py${{ matrix.python-version }}

- name: Store artifact | Store coverage files
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-dist-${{ matrix.os }}-py${{ matrix.python-version }}
path: coverage
Expand Down Expand Up @@ -353,7 +353,7 @@ jobs:
token: ${{ steps.setup-bot.outputs.token }}

- name: Get artifact | Get coverage files
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
merge-multiple: true
pattern: coverage-*
Expand All @@ -366,14 +366,14 @@ jobs:
MERGE_COVERAGE_FILES: true

- name: Store artifact | Store merged coverage data
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-all
path: .coverage
include-hidden-files: true

- name: Store artifact | Store coverage comment
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: steps.coverage-comment.outputs.COMMENT_FILE_WRITTEN == 'true'
with:
name: python-coverage-comment-action
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
just release

- name: Store artifact | Store build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: release-build-artifacts
path: dist/
Expand Down
Loading