Skip to content

Commit 9154d38

Browse files
Update GitHub Actions
1 parent f285a32 commit 9154d38

3 files changed

Lines changed: 23 additions & 23 deletions

File tree

.github/workflows/ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
shell: bash -el {0}
2727
steps:
2828
- name: checkout
29-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
29+
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
3030

3131
- name: Setup Miniconda
32-
uses: conda-incubator/setup-miniconda@v4.0.1
32+
uses: conda-incubator/setup-miniconda@8ee1f361103df19b6f8c8655fd3967a8ecb162d5 # v4.0.1
3333
with:
3434
activate-environment: "testing"
3535
python-version: ${{ matrix.python }}
@@ -49,7 +49,7 @@ jobs:
4949
pytest -s --cov aiida_amber --cov-report term-missing --cov-report "xml:${GITHUB_WORKSPACE}/coverage.xml" --cov-append .
5050
5151
- name: Report Coverage
52-
uses: coverallsapp/github-action@5cbfd81b66ca5d10c19b062c04de0199c215fb6e # v2.3.7
52+
uses: coverallsapp/github-action@8d6379e14d29928660c4ba802d8e85393440b329 # v2.3.8
5353
with:
5454
file: ${{ github.workspace }}/coverage.xml
5555
format: cobertura
@@ -62,20 +62,20 @@ jobs:
6262
runs-on: ubuntu-24.04
6363
steps:
6464
- name: Coveralls Finished
65-
uses: coverallsapp/github-action@5cbfd81b66ca5d10c19b062c04de0199c215fb6e # v2.3.7
65+
uses: coverallsapp/github-action@8d6379e14d29928660c4ba802d8e85393440b329 # v2.3.8
6666
with:
6767
parallel-finished: true
6868

6969
docs:
7070
runs-on: ubuntu-24.04
7171
timeout-minutes: 15
7272
steps:
73-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
73+
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
7474

7575
- name: Set up Python 3.13
76-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
76+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
7777
with:
78-
python-version: 3.13
78+
python-version: 3.14
7979

8080
- name: Install python dependencies
8181
run: |
@@ -89,12 +89,12 @@ jobs:
8989
runs-on: ubuntu-24.04
9090
timeout-minutes: 15
9191
steps:
92-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
92+
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
9393

9494
- name: Set up Python 3.13
95-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
95+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
9696
with:
97-
python-version: 3.13
97+
python-version: 3.14
9898

9999
- name: Install python dependencies
100100
run: |

.github/workflows/release.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
steps:
2020
- name: checkout repository
2121
id: repo
22-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
22+
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
2323

2424
- name: get python 3.13
25-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
25+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
2626
with:
27-
python-version: 3.13
27+
python-version: 3.14
2828

2929
- name: pip latest
3030
id: latestreleased
@@ -47,7 +47,7 @@ jobs:
4747
steps:
4848

4949
- name: checkout
50-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
50+
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
5151

5252
- name: Change version in repo and CITATION.cff
5353
run: |
@@ -62,7 +62,7 @@ jobs:
6262
6363
- name: send PR
6464
id: pr_id
65-
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0
65+
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
6666
with:
6767
commit-message: Update version to ${{ github.event.inputs.version }}
6868
branch: version-update
@@ -93,7 +93,7 @@ jobs:
9393
runs-on: ubuntu-24.04
9494
steps:
9595
- name: Checkout repository
96-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
96+
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
9797
with:
9898
ref: main
9999

@@ -161,14 +161,14 @@ jobs:
161161
steps:
162162

163163
- name: checkout
164-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
164+
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
165165
with:
166166
ref: main
167167

168168
- name: get python 3.13
169-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
169+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
170170
with:
171-
python-version: 3.13
171+
python-version: 3.14
172172

173173
- name: Install flit
174174
run: |
@@ -189,7 +189,7 @@ jobs:
189189

190190
steps:
191191
- name: Checkout
192-
uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4
192+
uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.4.0
193193
with:
194194
ref: main
195195

@@ -199,7 +199,7 @@ jobs:
199199
grep '{% set version' conda-recipe/meta.yaml
200200
201201
- name: Setup Conda (conda-forge only)
202-
uses: conda-incubator/setup-miniconda@fc2d68f6413eb2d87b895e92f8584b5b94a10167 # v3
202+
uses: conda-incubator/setup-miniconda@fc2d68f6413eb2d87b895e92f8584b5b94a10167 # v3.3.0
203203
with:
204204
miniforge-variant: Miniforge3
205205
python-version: "3.12"

.github/workflows/update-copyright-years-in-license-file.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
update-license-year:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
12+
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
1313
with:
1414
fetch-depth: 0
15-
- uses: FantasticFiasco/action-update-license-year@f180e962fa988db222d8f03ef4636750312d1b3d # v3
15+
- uses: FantasticFiasco/action-update-license-year@f180e962fa988db222d8f03ef4636750312d1b3d # v3.0.4
1616
with:
1717
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)