Skip to content
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
git bundle create repo.bundle --all

- name: Upload bundle as artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: git-repo-bundle
path: repo.bundle
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Download git bundle
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: git-repo-bundle

Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:
fi

- name: Upload artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{ matrix.asset_name }}-binary
path: ./repo/dist/treemapper-*
Expand All @@ -237,7 +237,7 @@ jobs:
id-token: write
steps:
- name: Download git bundle
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: git-repo-bundle

Expand Down Expand Up @@ -302,7 +302,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download git bundle
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: git-repo-bundle

Expand Down Expand Up @@ -337,7 +337,7 @@ jobs:
echo "Successfully pushed version commit and tag"

- name: Download all build artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
path: ./artifacts

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:
verbose: true

- name: Upload coverage for SonarCloud
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: matrix.os == 'ubuntu-22.04' && matrix.python-version == '3.12'
with:
name: coverage-report
Expand Down Expand Up @@ -315,7 +315,7 @@ jobs:
fetch-depth: 0

- name: Download coverage reports
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: coverage-report
path: .
Expand Down
Loading