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
14 changes: 7 additions & 7 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
commit_sha: ${{ steps.commit_version.outputs.commit_sha }}
steps:
- name: Checkout Code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0 # Need full history for git bundle

Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
git bundle create repo.bundle --all

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

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

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

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

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

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

Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: Pre-commit hooks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v6
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Python 3.11
uses: actions/setup-python@v6
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up PyPy ${{ matrix.python-version }}
uses: actions/setup-python@v6
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
python-version: ['3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
verbose: true

- name: Upload coverage for SonarCloud
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: matrix.python-version == '3.12'
with:
name: coverage-report
Expand All @@ -240,7 +240,7 @@ jobs:
if: github.event_name == 'push' && github.ref == 'refs/heads/main'

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -270,7 +270,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v6
Expand Down Expand Up @@ -306,7 +306,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v6
Expand Down Expand Up @@ -357,12 +357,12 @@ jobs:
if: github.event_name == 'pull_request' || github.ref == 'refs/heads/main'

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

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