Skip to content

Commit 2240249

Browse files
chore(deps): bump the actions-infrastructure group across 1 directory with 4 updates
Bumps the actions-infrastructure group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python), [actions/setup-go](https://github.com/actions/setup-go) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `actions/setup-go` from 5 to 6 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v5...v6) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-infrastructure - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-infrastructure - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-infrastructure - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-infrastructure ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 59bd130 commit 2240249

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

.github/workflows/ci-cd.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
attestations: write
3333
id-token: write
3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v5
3636
with:
3737
fetch-depth: 0
3838
- uses: hynek/build-and-inspect-python-package@v2
@@ -58,13 +58,13 @@ jobs:
5858

5959
steps:
6060
- name: Fetch repository
61-
uses: actions/checkout@v4
61+
uses: actions/checkout@v5
6262
with:
6363
fetch-depth: 0
6464
- name: Install the latest version of uv
6565
uses: astral-sh/setup-uv@v6
6666
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
67-
uses: actions/setup-python@v5
67+
uses: actions/setup-python@v6
6868
with:
6969
python-version: ${{ matrix.python-version }}
7070
- name: Install tox
@@ -97,13 +97,13 @@ jobs:
9797
echo "RELEASE_VERSION=v3.7.1" >> $GITHUB_ENV
9898
echo "NO_ET=TRUE" >> $GITHUB_ENV
9999
- name: Setup Singularity
100-
uses: actions/checkout@v4
100+
uses: actions/checkout@v5
101101
with:
102102
repository: hpcng/singularity
103103
ref: 'v3.7.1'
104104
path: 'singularity'
105105
- name: Setup GO
106-
uses: actions/setup-go@v5
106+
uses: actions/setup-go@v6
107107
with:
108108
go-version: '^1.13'
109109
- name: Install OS deps
@@ -122,13 +122,13 @@ jobs:
122122
run: |
123123
echo ${{ github.ref }}
124124
singularity --version
125-
- uses: actions/checkout@v4
125+
- uses: actions/checkout@v5
126126
with:
127127
fetch-depth: 0
128128
- name: Install the latest version of uv
129129
uses: astral-sh/setup-uv@v6
130130
- name: Set up Python ${{ matrix.python-version }}
131-
uses: actions/setup-python@v5
131+
uses: actions/setup-python@v6
132132
with:
133133
python-version: ${{ matrix.python-version }}
134134
- name: Install tox
@@ -158,7 +158,7 @@ jobs:
158158
steps:
159159
- name: Disable etelemetry
160160
run: echo "NO_ET=TRUE" >> $GITHUB_ENV
161-
- uses: actions/checkout@v4
161+
- uses: actions/checkout@v5
162162
with:
163163
fetch-depth: 0
164164
- name: Pull docker image
@@ -204,11 +204,11 @@ jobs:
204204
# steps:
205205
# - name: Disable etelemetry
206206
# run: echo "NO_ET=TRUE" >> $GITHUB_ENV
207-
# - uses: actions/checkout@v4
207+
# - uses: actions/checkout@v5
208208
# - name: Fetch tags
209209
# run: git fetch --prune --unshallow
210210
# - name: Set up Python ${{ matrix.python-version }}
211-
# uses: actions/setup-python@v5
211+
# uses: actions/setup-python@v6
212212
# with:
213213
# python-version: ${{ matrix.python-version }}
214214
# - name: Install SGE
@@ -307,7 +307,7 @@ jobs:
307307
ps aux | grep xfce4-notifyd
308308
dbus-monitor --session &
309309
sleep 3
310-
- uses: actions/checkout@v4
310+
- uses: actions/checkout@v5
311311
with:
312312
fetch-depth: 0
313313
- name: Install Minconda
@@ -323,7 +323,7 @@ jobs:
323323
conda install -c conda-forge -c MRtrix3 mrtrix3 libstdcxx-ng
324324
mrconvert --version
325325
- name: Set up Python
326-
uses: actions/setup-python@v5
326+
uses: actions/setup-python@v6
327327
with:
328328
python-version: '3.x'
329329
- name: Install package
@@ -346,7 +346,7 @@ jobs:
346346
id-token: write
347347
steps:
348348
- name: Download dist
349-
uses: actions/download-artifact@v4
349+
uses: actions/download-artifact@v5
350350
with:
351351
name: Packages
352352
path: dist
@@ -359,7 +359,7 @@ jobs:
359359
if: github.event_name == 'release'
360360
steps:
361361
- name: Download docs
362-
uses: actions/download-artifact@v4
362+
uses: actions/download-artifact@v5
363363
with:
364364
name: docs
365365
path: docs-build

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919

2020
- name: Prepare repository
2121
# Fetch full git history and tags
@@ -27,7 +27,7 @@ jobs:
2727
run: git config --local --unset http.https://github.com/.extraheader
2828

2929
- name: Set up Python
30-
uses: actions/setup-python@v5
30+
uses: actions/setup-python@v6
3131
with:
3232
python-version: 3
3333

0 commit comments

Comments
 (0)