Skip to content

Commit c93ddda

Browse files
build(deps): bump the actions-infrastructure group with 3 updates
Bumps the actions-infrastructure group with 3 updates: [actions/setup-python](https://github.com/actions/setup-python), [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). Updates `actions/setup-python` from 4 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v4...v5) Updates `actions/checkout` from 3 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) Updates `actions/cache` from 3 to 4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-infrastructure - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-infrastructure - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-infrastructure ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 4b3ae02 commit c93ddda

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/pythonpackage.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020

2121
steps:
2222
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v4
23+
uses: actions/setup-python@v5
2424
with:
2525
python-version: ${{ matrix.python-version }}
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727
with:
2828
fetch-depth: 0
2929
- name: Build package
@@ -90,7 +90,7 @@ jobs:
9090
if: "!contains(github.event.head_commit.message, '[skip ci]')"
9191
runs-on: ubuntu-latest
9292
steps:
93-
- uses: actions/checkout@v3
93+
- uses: actions/checkout@v4
9494
- name: Set up Python 3
95-
uses: actions/setup-python@v4
95+
uses: actions/setup-python@v5
9696
- run: pipx run flake8 nitransforms

.github/workflows/travis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
git ls-remote https://gin.g-node.org/oesteban/nitransforms-tests \
4141
| awk '/HEAD/{ print "SHA=" $1 }' >> $GITHUB_OUTPUT
4242
43-
- uses: actions/cache@v3
43+
- uses: actions/cache@v4
4444
with:
4545
path: ${{ env.TEST_DATA_HOME }}
4646
key: data-cache-v2-${{ steps.test-head.outputs.SHA }}
@@ -69,15 +69,15 @@ jobs:
6969
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
7070
steps:
7171
- name: Set up Python ${{ matrix.python-version }}
72-
uses: actions/setup-python@v4
72+
uses: actions/setup-python@v5
7373
with:
7474
python-version: ${{ matrix.python-version }}
75-
- uses: actions/cache/restore@v3
75+
- uses: actions/cache/restore@v4
7676
with:
7777
path: ${{ env.TEST_DATA_HOME }}
7878
key: data-cache-v2-${{ needs.cache-test-data.outputs.SHA }}
7979

80-
- uses: actions/checkout@v3
80+
- uses: actions/checkout@v4
8181
- name: Install minimal dependencies
8282
run: |
8383
pip install .[tests]

0 commit comments

Comments
 (0)