Skip to content

Commit 8af4d21

Browse files
committed
Updates actions
1 parent e147073 commit 8af4d21

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
build-deploy-docs:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919
- name: Document which branch
2020
run: echo $DOC_REF_NAME
2121
- name: Set up Python
22-
uses: actions/setup-python@v2
22+
uses: actions/setup-python@v6
2323
with:
2424
python-version: '3.x'
2525
cache: 'pip'

.github/workflows/publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
runs-on: ubuntu-latest
2222

2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v6
2525
- name: Set up Python
26-
uses: actions/setup-python@v4
26+
uses: actions/setup-python@v6
2727
with:
2828
python-version: "3.x"
2929
- name: Install pypa/build
@@ -35,7 +35,7 @@ jobs:
3535
- name: Build a binary wheel and a source tarball
3636
run: python3 -m build
3737
- name: Store the distribution packages
38-
uses: actions/upload-artifact@v3
38+
uses: actions/upload-artifact@v4
3939
with:
4040
name: python-package-distributions
4141
path: dist/
@@ -55,7 +55,7 @@ jobs:
5555

5656
steps:
5757
- name: Download all the dists
58-
uses: actions/download-artifact@v3
58+
uses: actions/download-artifact@v4
5959
with:
6060
name: python-package-distributions
6161
path: dist/
@@ -78,7 +78,7 @@ jobs:
7878

7979
steps:
8080
- name: Download all the dists
81-
uses: actions/download-artifact@v3
81+
uses: actions/download-artifact@v4
8282
with:
8383
name: python-package-distributions
8484
path: dist/

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ jobs:
66
linting:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
10-
- uses: actions/setup-python@v4
9+
- uses: actions/checkout@v6
10+
- uses: actions/setup-python@v6
1111
with:
1212
python-version: '3.13'
13-
- uses: pre-commit/action@v3.0.0
13+
- uses: pre-commit/action@v3.0.1
1414
with:
1515
extra_args: --all-files --verbose
1616
tests:
@@ -21,9 +21,9 @@ jobs:
2121
matrix:
2222
python-version: ['3.10', '3.11', '3.12', '3.13']
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v6
2525
- name: Set up Python ${{ matrix.python-version }}
26-
uses: actions/setup-python@v4
26+
uses: actions/setup-python@v6
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929
cache: 'pip'

0 commit comments

Comments
 (0)