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
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
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
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
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