Skip to content

Commit 090f66f

Browse files
Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent ef291c9 commit 090f66f

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@v5
21+
- uses: actions/checkout@v6
2222
- name: Set up Python ${{ matrix.python-version }}
2323
uses: actions/setup-python@v6
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@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
@@ -64,7 +64,7 @@ jobs:
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:
@@ -98,7 +98,7 @@ jobs:
9898
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: 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@v5
23+
uses: actions/checkout@v6
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@v5
46+
uses: actions/checkout@v6
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@v5
71+
uses: actions/checkout@v6
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@v5
95+
uses: actions/checkout@v6
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@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: 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@v5
43+
- uses: actions/checkout@v6
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@v5
120+
- uses: actions/checkout@v6
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@v5
204+
- uses: actions/checkout@v6
205205
with:
206206
ref: ${{ steps.version.outputs.version }}
207207
- name: Install

0 commit comments

Comments
 (0)