Skip to content

Commit bdefc8b

Browse files
committed
Update setup actions
1 parent 69b734f commit bdefc8b

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ jobs:
5959
jl${{ matrix.julia-version }}
6060
${{ matrix.os }} ${{ matrix.architecture }}
6161
steps:
62-
- uses: actions/checkout@v1
62+
- uses: actions/checkout@v4
6363
- name: Setup python
64-
uses: actions/setup-python@v1
64+
uses: actions/setup-python@v4
6565
with:
6666
python-version: ${{ matrix.python-version }}
6767
architecture: ${{ matrix.architecture }}
@@ -99,9 +99,9 @@ jobs:
9999
fail-fast: false
100100
name: Check ${{ matrix.toxenv }}
101101
steps:
102-
- uses: actions/checkout@v2
102+
- uses: actions/checkout@v4
103103
- name: Setup python
104-
uses: actions/setup-python@v1
104+
uses: actions/setup-python@v4
105105
with:
106106
python-version: '3.10'
107107
- run: python -m pip install --upgrade tox

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Set up Python 3.9
17-
uses: actions/setup-python@v1
17+
uses: actions/setup-python@v4
1818
with:
1919
python-version: 3.9
2020
- name: Install setuptools and wheel
@@ -39,9 +39,9 @@ jobs:
3939
needs: publish-to-testpypi
4040
runs-on: ubuntu-20.04
4141
steps:
42-
- uses: actions/checkout@v2
42+
- uses: actions/checkout@v4
4343
- name: Set up Python 3.9
44-
uses: actions/setup-python@v1
44+
uses: actions/setup-python@v4
4545
with:
4646
python-version: 3.9
4747
- name: Set up Julia
@@ -60,7 +60,7 @@ jobs:
6060
package: ['julia==0.6.1']
6161
steps:
6262
- name: Set up Python 3.9
63-
uses: actions/setup-python@v1
63+
uses: actions/setup-python@v4
6464
with:
6565
python-version: 3.9
6666
- name: Download from TestPyPI

.github/workflows/testtests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
test__using_default_setup:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
- name: Setup python
17-
uses: actions/setup-python@v1
17+
uses: actions/setup-python@v4
1818
- run: python -m pip install --upgrade tox
1919
- run: python -m tox -- --no-julia -k test__using_default_setup
2020
env:

0 commit comments

Comments
 (0)