Skip to content

Commit 0fe64ea

Browse files
authored
Merge pull request #78 from pinellolab/dependabot/github_actions/dev/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents 528cbf2 + 7a6079c commit 0fe64ea

5 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/ci-codecheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
python-version: ["3.9","3.10"]
1919
software: ["pylint","flake8"]
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- name: Set up Python ${{ matrix.python-version }}
2323
uses: actions/setup-python@v5
2424
with:

.github/workflows/ci-conda.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
uses: actions/setup-python@v5
3333
with:
3434
python-version: 3.8
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v5
3636
with:
3737
fetch-depth: 0
3838
- name: Mask token
@@ -64,7 +64,7 @@ jobs:
6464
shell: bash
6565
run: |
6666
echo $CONDA/bin >> $GITHUB_PATH
67-
- uses: actions/checkout@v4
67+
- uses: actions/checkout@v5
6868
- name: Install package
6969
uses: ./.github/actions/install-conda
7070
with:
@@ -98,7 +98,7 @@ jobs:
9898
uses: actions/setup-python@v5
9999
with:
100100
python-version: 3.8
101-
- uses: actions/checkout@v4
101+
- uses: actions/checkout@v5
102102
with:
103103
fetch-depth: 0
104104
- name: Mask token

.github/workflows/ci-container.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
with:
2525
path: local
2626
- name: Log in to Docker Hub
@@ -43,7 +43,7 @@ jobs:
4343
image: lfwa/dictys-cpu-dev
4444
steps:
4545
- name: Checkout repository
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v5
4747
- name: Get dataset URL
4848
id: zenodo-url-translate
4949
uses: ./.github/actions/zenodo-url-translate
@@ -68,7 +68,7 @@ jobs:
6868
runs-on: ubuntu-latest
6969
steps:
7070
- name: Checkout repository
71-
uses: actions/checkout@v4
71+
uses: actions/checkout@v5
7272
with:
7373
path: local
7474
- name: Log in to Docker Hub
@@ -92,7 +92,7 @@ jobs:
9292
cuda: [11.3,11.6,11.7]
9393
steps:
9494
- name: Checkout repository
95-
uses: actions/checkout@v4
95+
uses: actions/checkout@v5
9696
with:
9797
path: local
9898
- name: Log in to Docker Hub

.github/workflows/ci-inference.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
python-version: ["3.9","3.10"]
2626
nth: ["2"]
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
- name: Install
3030
uses: ./.github/actions/install-bash
3131
with:
@@ -56,7 +56,7 @@ jobs:
5656
python-version: ["3.9","3.10"]
5757
nth: ["1","2"]
5858
steps:
59-
- uses: actions/checkout@v4
59+
- uses: actions/checkout@v5
6060
- name: Install
6161
uses: ./.github/actions/install-bash
6262
with:
@@ -87,7 +87,7 @@ jobs:
8787
python-version: ["3.9","3.10"]
8888
nth: ["2"]
8989
steps:
90-
- uses: actions/checkout@v4
90+
- uses: actions/checkout@v5
9191
- name: Install
9292
uses: ./.github/actions/install-bash
9393
with:

.github/workflows/ci-install.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
fi
4141
echo "$v"
4242
echo "version=$v" >> $GITHUB_OUTPUT
43-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@v5
4444
with:
4545
ref: ${{ steps.version.outputs.version }}
4646
- name: Set up Python 3.8
@@ -117,7 +117,7 @@ jobs:
117117
fi
118118
echo "$v"
119119
echo "version=$v" >> $GITHUB_OUTPUT
120-
- uses: actions/checkout@v4
120+
- uses: actions/checkout@v5
121121
with:
122122
ref: ${{ steps.version.outputs.version }}
123123
- name: Set up Python 3.8
@@ -201,7 +201,7 @@ jobs:
201201
fi
202202
echo "$v"
203203
echo "version=$v" >> $GITHUB_OUTPUT
204-
- uses: actions/checkout@v4
204+
- uses: actions/checkout@v5
205205
with:
206206
ref: ${{ steps.version.outputs.version }}
207207
- name: Install

0 commit comments

Comments
 (0)