Skip to content

Commit 0f71b76

Browse files
committed
Update github actions packages
1 parent a3bc455 commit 0f71b76

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/pre-commit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
env:
1212
SKIP: no-commit-to-branch
1313
steps:
14-
- uses: actions/checkout@v2
15-
- uses: actions/setup-python@v2
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-python@v5
1616
- uses: pre-commit/[email protected]

.github/workflows/pypi.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
name: build source distribution
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 0
18-
- uses: actions/setup-python@v4
18+
- uses: actions/setup-python@v5
1919
with:
2020
python-version: "3.10"
2121
- name: Build the sdist and the wheel
@@ -61,7 +61,7 @@ jobs:
6161
user: __token__
6262
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
6363
repository_url: https://test.pypi.org/legacy/
64-
- uses: actions/setup-python@v4
64+
- uses: actions/setup-python@v5
6565
with:
6666
python-version: "3.10"
6767
- name: Test pip install from test.pypi

.github/workflows/test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
run:
3131
shell: bash -l {0}
3232
steps:
33-
- uses: actions/checkout@v2
33+
- uses: actions/checkout@v4
3434
- name: Cache conda
35-
uses: actions/cache@v1
35+
uses: actions/cache@v4
3636
env:
3737
# Increase this value to reset cache if environment-test.yml has not changed
3838
CACHE_NUMBER: 0
@@ -41,7 +41,7 @@ jobs:
4141
key: ${{ runner.os }}-py${{matrix.python-version}}-conda-${{ env.CACHE_NUMBER }}-${{
4242
hashFiles('conda-envs/environment-test.yml') }}
4343
- name: Cache multiple paths
44-
uses: actions/cache@v2
44+
uses: actions/cache@v4
4545
env:
4646
# Increase this value to reset cache if requirements.txt has not changed
4747
CACHE_NUMBER: 0
@@ -52,7 +52,7 @@ jobs:
5252
~\AppData\Local\pip\Cache
5353
key: ${{ runner.os }}-build-${{ matrix.python-version }}-${{
5454
hashFiles('requirements.txt') }}
55-
- uses: conda-incubator/setup-miniconda@v2
55+
- uses: conda-incubator/setup-miniconda@v3
5656
with:
5757
miniforge-variant: Mambaforge
5858
miniforge-version: latest
@@ -94,9 +94,9 @@ jobs:
9494
run:
9595
shell: cmd
9696
steps:
97-
- uses: actions/checkout@v2
97+
- uses: actions/checkout@v4
9898
- name: Cache conda
99-
uses: actions/cache@v1
99+
uses: actions/cache@v4
100100
env:
101101
# Increase this value to reset cache if conda-envs/windows-environment-test.yml has not changed
102102
CACHE_NUMBER: 0
@@ -105,7 +105,7 @@ jobs:
105105
key: ${{ runner.os }}-py${{matrix.python-version}}-conda-${{ env.CACHE_NUMBER }}-${{
106106
hashFiles('conda-envs/windows-environment-test.yml') }}
107107
- name: Cache multiple paths
108-
uses: actions/cache@v2
108+
uses: actions/cache@v4
109109
env:
110110
# Increase this value to reset cache if requirements.txt has not changed
111111
CACHE_NUMBER: 0
@@ -116,7 +116,7 @@ jobs:
116116
~\AppData\Local\pip\Cache
117117
key: ${{ runner.os }}-build-${{ matrix.python-version }}-${{
118118
hashFiles('requirements.txt') }}
119-
- uses: conda-incubator/setup-miniconda@v2
119+
- uses: conda-incubator/setup-miniconda@v3
120120
with:
121121
miniforge-variant: Mambaforge
122122
miniforge-version: latest

0 commit comments

Comments
 (0)