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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ jobs:
with:
access_token: ${{ github.token }}
if: ${{github.ref != 'refs/head/main'}}
- uses: actions/checkout@v2
- uses: actions/checkout@v6
- name: conda cache
uses: actions/cache@v3
uses: actions/cache@v5
env:
# Increase this value to reset cache if etc/example-environment.yml has not changed
CACHE_NUMBER: 0
Expand Down Expand Up @@ -74,9 +74,9 @@ jobs:
with:
access_token: ${{ github.token }}
if: ${{github.ref != 'refs/head/main'}}
- uses: actions/checkout@v2
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Get pip cache dir
Expand All @@ -101,9 +101,9 @@ jobs:
with:
access_token: ${{ github.token }}
if: ${{github.ref != 'refs/head/main'}}
- uses: actions/checkout@v2
- uses: actions/checkout@v6
- name: conda cache
uses: actions/cache@v3
uses: actions/cache@v5
env:
# Increase this value to reset cache if etc/example-environment.yml has not changed
CACHE_NUMBER: 0
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
build-artifacts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v2.3.1
uses: actions/setup-python@v6.2.0
with:
python-version: 3.8

Expand All @@ -47,7 +47,7 @@ jobs:
else
echo "✅ Looks good"
fi
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v7
with:
name: releases
path: dist
Expand All @@ -56,11 +56,11 @@ jobs:
needs: build-artifacts
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v2.3.1
- uses: actions/setup-python@v6.2.0
name: Install Python
with:
python-version: 3.8
- uses: actions/download-artifact@v4.1.7
- uses: actions/download-artifact@v8.0.1
with:
name: releases
path: dist
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
if: github.event_name == 'release'
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4.1.7
- uses: actions/download-artifact@v8.0.1
with:
name: releases
path: dist
Expand Down