Skip to content

Commit 3d31eaf

Browse files
authored
update checkout to v6
1 parent 6ea1293 commit 3d31eaf

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

.github/actions/install_conda_pip/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ name: Install nnpdf using pip under a conda environment
1717
#
1818
# Remember that these actions are only available after checking out the repository,
1919
# which should always be the first step!
20-
# - uses: actions/checkout@v4
20+
# - uses: actions/checkout@v6
2121

2222
inputs:
2323
python-version:

.github/actions/prepare_environment/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ name: Prepare a conda environment for NNPDF installation
1313
#
1414
# Remember that these actions are only available after checking out the repository,
1515
# which should always be the first step!
16-
# - uses: actions/checkout@v4
16+
# - uses: actions/checkout@v6
1717
#
1818
# This action also removes part of the cache of the runner to avoid using too much storage
1919
# (see at the bottom)

.github/workflows/all_tests_nnpdf.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
fail-fast: false # continue even if some jobs failed
2929
runs-on: ${{ matrix.os }}
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v6
3232
- uses: ./.github/actions/install_conda_pip
3333
with:
3434
python-version: ${{ matrix.python-version }}
@@ -48,10 +48,8 @@ jobs:
4848
regression_tests:
4949
runs-on: ubuntu-latest
5050
steps:
51-
- uses: actions/checkout@v4
51+
- uses: actions/checkout@v6
5252
- uses: ./.github/actions/install_conda_pip
53-
with:
54-
nnpdf-extras: "[qed,tests]"
5553
- name: Run regression tests
5654
shell: bash -l {0}
5755
run: |
@@ -70,7 +68,7 @@ jobs:
7068
fail-fast: false
7169
runs-on: ${{ matrix.os }}
7270
steps:
73-
- uses: actions/checkout@v4
71+
- uses: actions/checkout@v6
7472
with: # conda requires fetching the history of the repo to prepare the package name
7573
fetch-tags: true
7674
fetch-depth: 0
@@ -95,7 +93,7 @@ jobs:
9593
env:
9694
KERAS_BACKEND: torch
9795
steps:
98-
- uses: actions/checkout@v4
96+
- uses: actions/checkout@v6
9997
- uses: actions/setup-python@v5
10098
with:
10199
python-version: "3.13"
@@ -127,7 +125,7 @@ jobs:
127125
env:
128126
KERAS_BACKEND: jax
129127
steps:
130-
- uses: actions/checkout@v4
128+
- uses: actions/checkout@v6
131129
- uses: actions/setup-python@v5
132130
with:
133131
python-version: "3.13"
@@ -148,7 +146,7 @@ jobs:
148146
needs: [run_package_tests, regression_tests]
149147
runs-on: ubuntu-latest
150148
steps:
151-
- uses: actions/checkout@v4
149+
- uses: actions/checkout@v6
152150
- uses: ./.github/actions/install_conda_pip
153151
with:
154152
nnpdf-extras: ""

.github/workflows/check_newcd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414
with:
1515
fetch-tags: true
1616
fetch-depth: 0

.github/workflows/fitbot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
if: contains(github.event.pull_request.labels.*.name, 'run-fit-bot')
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v6
2626
with:
2727
fetch-tags: true
2828
fetch-depth: 0

.github/workflows/redo_regressions.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Redo regressions
22

3-
# start job only for PRs when a label is added.
3+
# Last update: 17/03/2026
4+
5+
# start job only for PRs when a label is added
46
on:
57
pull_request:
68
types: [labeled]
@@ -18,7 +20,7 @@ jobs:
1820
NETRC_FILE: ${{ secrets.NETRC_FILE }}
1921
NNPDF_SSH_KEY: ${{ secrets.NNPDF_SSH_KEY }}
2022
steps:
21-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v6
2224
with:
2325
fetch-depth: 0
2426
ref: ${{ github.event.pull_request.head.ref }}

.github/workflows/regenerate_data.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
if: contains(github.event.pull_request.labels.*.name, 'regenerate-data')
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414
with:
1515
fetch-depth: 0
1616
ref: ${{ github.event.pull_request.head.ref }}

.github/workflows/upload_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
deploy_docs:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414
- uses: ./.github/actions/install_conda_pip
1515
with:
1616
nnpdf-extras: "[qed,docs]"

0 commit comments

Comments
 (0)