Skip to content

Commit b32b0be

Browse files
committed
Update action versions
1 parent 1cce3bb commit b32b0be

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/pytest.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
# Checks-out your repository under $GITHUB_WORKSPACE
3939
- name: Checkout
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@v6.0.1
4141
with:
4242
# Need to fetch more than the last commit so that setuptools_scm can
4343
# create the correct version string. If the number of commits since
@@ -53,7 +53,7 @@ jobs:
5353
run: git fetch origin 'refs/tags/*:refs/tags/*'
5454

5555
- name: Setup Python
56-
uses: actions/setup-python@v5
56+
uses: actions/setup-python@v6.1.0
5757
with:
5858
python-version: ${{ matrix.python-version }}
5959

@@ -69,7 +69,7 @@ jobs:
6969
run: pytest --cov=pyfftlog
7070

7171
- name: Coveralls
72-
# [pin @develop@20230609]
72+
# [pin @develop@20240509]
7373
uses: AndreMiras/coveralls-python-action@65c1672f0b8a201702d86c81b79187df74072505
7474
with:
7575
parallel: true
@@ -81,7 +81,7 @@ jobs:
8181
runs-on: ubuntu-latest
8282
steps:
8383
- name: Coveralls Finished
84-
# [pin @develop@20230609]
84+
# [pin @develop@20240509]
8585
uses: AndreMiras/coveralls-python-action@65c1672f0b8a201702d86c81b79187df74072505
8686
with:
8787
parallel-finished: true
@@ -96,7 +96,7 @@ jobs:
9696
steps:
9797
# Checks-out your repository under $GITHUB_WORKSPACE
9898
- name: Checkout
99-
uses: actions/checkout@v4
99+
uses: actions/checkout@v6.0.1
100100
with:
101101
# Need to fetch more than the last commit so that setuptools_scm can
102102
# create the correct version string. If the number of commits since
@@ -112,9 +112,9 @@ jobs:
112112
run: git fetch origin 'refs/tags/*:refs/tags/*'
113113

114114
- name: Setup Python
115-
uses: actions/setup-python@v5
115+
uses: actions/setup-python@v6.1.0
116116
with:
117-
python-version: "3.12"
117+
python-version: "3.13"
118118

119119
- name: Install dependencies
120120
run: |
@@ -139,7 +139,7 @@ jobs:
139139
140140
- name: Publish to Test PyPI
141141
if: success()
142-
uses: pypa/gh-action-pypi-publish@release/v1
142+
uses: pypa/gh-action-pypi-publish@release/v1.13.0
143143
with:
144144
user: __token__
145145
password: ${{ secrets.TEST_PYPI_PASSWORD }}
@@ -151,7 +151,7 @@ jobs:
151151
- name: Publish to PyPI
152152
# Only for releases
153153
if: success() && github.event_name == 'release'
154-
uses: pypa/gh-action-pypi-publish@release/v1
154+
uses: pypa/gh-action-pypi-publish@release/v1.13.0
155155
with:
156156
user: __token__
157157
password: ${{ secrets.PYPI_PASSWORD }}

0 commit comments

Comments
 (0)