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
6 changes: 3 additions & 3 deletions .github/workflows/build-ultraplot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
nproc
cat /proc/cpuinfo | grep "model name" | head -1

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

Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
nproc
cat /proc/cpuinfo | grep "model name" | head -1

- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: mamba-org/setup-micromamba@v3.0.0
with:
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
# Cache Baseline Figures (Restore step)
- name: Cache Baseline Figures
id: cache-baseline
uses: actions/cache@v5
uses: actions/cache@v6
if: ${{ env.IS_PR }}
with:
path: ./ultraplot/tests/baseline # The directory to cache
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
outputs:
run: ${{ github.event_name == 'push' && 'true' || steps.filter.outputs.python }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: dorny/paths-filter@v4
id: filter
with:
Expand All @@ -32,7 +32,7 @@ jobs:
mode: ${{ steps.select.outputs.mode }}
tests: ${{ steps.select.outputs.tests }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand All @@ -41,7 +41,7 @@ jobs:

- name: Restore test map cache
id: restore-map
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: .ci/test-map.json
key: test-map-${{ github.event.pull_request.base.sha }}
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
matplotlib-versions: ${{ steps.set-versions.outputs.matplotlib-versions }}
test-matrix: ${{ steps.set-versions.outputs.test-matrix }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
with:
swap-size-gb: 10

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

Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
ultraplot/tests

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v7
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Build packages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
# env:
# ZENODO_ACCESS_TOKEN: ${{ secrets.ZENODO_ACCESS_TOKEN }}
# steps:
# - uses: actions/checkout@v6
# - uses: actions/checkout@v7
# with:
# fetch-depth: 0
#
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-map.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
swap-size-gb: 10

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

Expand Down Expand Up @@ -48,14 +48,14 @@ jobs:
python tools/ci/build_test_map.py --coverage-file .coverage --output .ci/test-map.json --root .

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v7
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
name: codecov-test-map

- name: Cache test map
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: .ci/test-map.json
key: test-map-${{ github.sha }}