Skip to content

Commit f409a63

Browse files
authored
Merge pull request #91 from pinellolab/dev
Dev
2 parents a82930f + 88a1e32 commit f409a63

6 files changed

Lines changed: 27 additions & 27 deletions

File tree

.github/workflows/ci-codecheck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
python-version: ["3.9","3.10"]
1919
software: ["pylint","flake8"]
2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@v6
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626
- name: Install dependencies

.github/workflows/ci-conda.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
buildstr: ${{ steps.publish-pretest.outputs.buildstr }}
3030
steps:
3131
- name: Set up Python 3.8
32-
uses: actions/setup-python@v5
32+
uses: actions/setup-python@v6
3333
with:
3434
python-version: 3.8
35-
- uses: actions/checkout@v5
35+
- uses: actions/checkout@v6
3636
with:
3737
fetch-depth: 0
3838
- name: Mask token
@@ -57,14 +57,14 @@ jobs:
5757
python-version: ["3.9","3.10"]
5858
steps:
5959
- name: Set up Python 3.8
60-
uses: actions/setup-python@v5
60+
uses: actions/setup-python@v6
6161
with:
6262
python-version: 3.8
6363
- name: Add conda to system path
6464
shell: bash
6565
run: |
6666
echo $CONDA/bin >> $GITHUB_PATH
67-
- uses: actions/checkout@v5
67+
- uses: actions/checkout@v6
6868
- name: Install package
6969
uses: ./.github/actions/install-conda
7070
with:
@@ -95,10 +95,10 @@ jobs:
9595
runs-on: ubuntu-latest
9696
steps:
9797
- name: Set up Python 3.8
98-
uses: actions/setup-python@v5
98+
uses: actions/setup-python@v6
9999
with:
100100
python-version: 3.8
101-
- uses: actions/checkout@v5
101+
- uses: actions/checkout@v6
102102
with:
103103
fetch-depth: 0
104104
- name: Mask token

.github/workflows/ci-container.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
with:
2525
path: local
2626
- name: Log in to Docker Hub
27-
uses: docker/login-action@v3
27+
uses: docker/login-action@v4
2828
with:
2929
username: ${{ secrets.DOCKERHUB_USER }}
3030
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -43,7 +43,7 @@ jobs:
4343
image: lfwa/dictys-cpu-dev
4444
steps:
4545
- name: Checkout repository
46-
uses: actions/checkout@v5
46+
uses: actions/checkout@v6
4747
- name: Get dataset URL
4848
id: zenodo-url-translate
4949
uses: ./.github/actions/zenodo-url-translate
@@ -68,11 +68,11 @@ jobs:
6868
runs-on: ubuntu-latest
6969
steps:
7070
- name: Checkout repository
71-
uses: actions/checkout@v5
71+
uses: actions/checkout@v6
7272
with:
7373
path: local
7474
- name: Log in to Docker Hub
75-
uses: docker/login-action@v3
75+
uses: docker/login-action@v4
7676
with:
7777
username: ${{ secrets.DOCKERHUB_USER }}
7878
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -92,11 +92,11 @@ jobs:
9292
cuda: [11.3,11.6,11.7]
9393
steps:
9494
- name: Checkout repository
95-
uses: actions/checkout@v5
95+
uses: actions/checkout@v6
9696
with:
9797
path: local
9898
- name: Log in to Docker Hub
99-
uses: docker/login-action@v3
99+
uses: docker/login-action@v4
100100
with:
101101
username: ${{ secrets.DOCKERHUB_USER }}
102102
password: ${{ secrets.DOCKERHUB_TOKEN }}

.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@v5
28+
- uses: actions/checkout@v6
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@v5
59+
- uses: actions/checkout@v6
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@v5
90+
- uses: actions/checkout@v6
9191
- name: Install
9292
uses: ./.github/actions/install-bash
9393
with:

.github/workflows/ci-install.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ jobs:
4040
fi
4141
echo "$v"
4242
echo "version=$v" >> $GITHUB_OUTPUT
43-
- uses: actions/checkout@v5
43+
- uses: actions/checkout@v6
4444
with:
4545
ref: ${{ steps.version.outputs.version }}
4646
- name: Set up Python 3.8
47-
uses: actions/setup-python@v5
47+
uses: actions/setup-python@v6
4848
with:
4949
python-version: 3.8
5050
- name: Obtain install script
@@ -85,7 +85,7 @@ jobs:
8585
needs: install-script-bash
8686
steps:
8787
- name: Set up Python 3.8
88-
uses: actions/setup-python@v5
88+
uses: actions/setup-python@v6
8989
with:
9090
python-version: 3.8
9191
- name: Add conda to system path
@@ -117,11 +117,11 @@ jobs:
117117
fi
118118
echo "$v"
119119
echo "version=$v" >> $GITHUB_OUTPUT
120-
- uses: actions/checkout@v5
120+
- uses: actions/checkout@v6
121121
with:
122122
ref: ${{ steps.version.outputs.version }}
123123
- name: Set up Python 3.8
124-
uses: actions/setup-python@v5
124+
uses: actions/setup-python@v6
125125
with:
126126
python-version: 3.8
127127
- name: Obtain install script
@@ -157,7 +157,7 @@ jobs:
157157
echo "$s1" >> $GITHUB_ENV
158158
echo "EOF" >> $GITHUB_ENV
159159
- id: runscript
160-
uses: actions/github-script@v7
160+
uses: actions/github-script@v9
161161
with:
162162
script: |
163163
core.setOutput("run", `${{ env.run }}`);
@@ -167,7 +167,7 @@ jobs:
167167
needs: install-script-conda
168168
steps:
169169
- name: Set up Python 3.8
170-
uses: actions/setup-python@v5
170+
uses: actions/setup-python@v6
171171
with:
172172
python-version: 3.8
173173
- name: Add conda to system path
@@ -201,7 +201,7 @@ jobs:
201201
fi
202202
echo "$v"
203203
echo "version=$v" >> $GITHUB_OUTPUT
204-
- uses: actions/checkout@v5
204+
- uses: actions/checkout@v6
205205
with:
206206
ref: ${{ steps.version.outputs.version }}
207207
- name: Install

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
pull-requests: write
1919

2020
steps:
21-
- uses: actions/stale@v9
21+
- uses: actions/stale@v10
2222
with:
2323
repo-token: ${{ secrets.GITHUB_TOKEN }}
2424
stale-issue-message: 'Stale issue message'

0 commit comments

Comments
 (0)