Skip to content

Commit be3cc3b

Browse files
Bump the ci group with 5 updates (#73)
Bumps the ci group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/setup-python](https://github.com/actions/setup-python) | `4` | `5` | | [actions/cache](https://github.com/actions/cache) | `3` | `4` | | [actions/checkout](https://github.com/actions/checkout) | `3` | `4` | | [test-summary/action](https://github.com/test-summary/action) | `2.0` | `2.4` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `3` | `5` | 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/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) 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 `test-summary/action` from 2.0 to 2.4 - [Release notes](https://github.com/test-summary/action/releases) - [Commits](test-summary/action@v2.0...v2.4) Updates `codecov/codecov-action` from 3 to 5 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v3...v5) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci - dependency-name: actions/cache dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci - dependency-name: actions/checkout dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci - dependency-name: test-summary/action dependency-version: '2.4' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ci - dependency-name: codecov/codecov-action dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 2e506fd commit be3cc3b

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

.github/workflows/ci-cd.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
- name: >-
9393
Switch to using Python v${{ matrix.python-version }}
9494
by default
95-
uses: actions/setup-python@v4
95+
uses: actions/setup-python@v5
9696
with:
9797
python-version: ${{ matrix.python-version }}
9898
- name: >-
@@ -119,7 +119,7 @@ jobs:
119119
run: >-
120120
echo "dir=$(python -m pip cache dir)" >> "${GITHUB_OUTPUT}"
121121
- name: Set up pip cache
122-
uses: actions/cache@v3
122+
uses: actions/cache@v4
123123
with:
124124
path: ${{ steps.pip-cache.outputs.dir }}
125125
key: >-
@@ -139,7 +139,7 @@ jobs:
139139
tox
140140
141141
- name: Grab the source from Git
142-
uses: actions/checkout@v3
142+
uses: actions/checkout@v4
143143

144144
- name: Pre-populate tox env
145145
run: >-
@@ -191,7 +191,7 @@ jobs:
191191
wheel-artifact-name: ${{ steps.artifact-name.outputs.wheel }}
192192
steps:
193193
- name: Switch to using Python 3.13 by default
194-
uses: actions/setup-python@v4
194+
uses: actions/setup-python@v5
195195
with:
196196
python-version: 3.13
197197
- name: >-
@@ -229,7 +229,7 @@ jobs:
229229
- name: Check out src from Git
230230
if: >-
231231
steps.request-check.outputs.release-requested != 'true'
232-
uses: actions/checkout@v3
232+
uses: actions/checkout@v4
233233
with:
234234
fetch-depth: 0
235235
ref: ${{ github.event.inputs.release-committish }}
@@ -279,7 +279,7 @@ jobs:
279279
- name: Set up pip cache
280280
if: >-
281281
steps.request-check.outputs.release-requested != 'true'
282-
uses: actions/cache@v3
282+
uses: actions/cache@v4
283283
with:
284284
path: >-
285285
${{
@@ -396,7 +396,7 @@ jobs:
396396

397397
steps:
398398
- name: Switch to using Python 3.13 by default
399-
uses: actions/setup-python@v4
399+
uses: actions/setup-python@v5
400400
with:
401401
python-version: 3.13
402402
- name: >-
@@ -423,7 +423,7 @@ jobs:
423423
run: >-
424424
echo "dir=$(python -m pip cache dir)" >> "${GITHUB_OUTPUT}"
425425
- name: Set up pip cache
426-
uses: actions/cache@v3
426+
uses: actions/cache@v4
427427
with:
428428
path: ${{ steps.pip-cache.outputs.dir }}
429429
key: >-
@@ -443,7 +443,7 @@ jobs:
443443
tox
444444
445445
- name: Grab the source from Git
446-
uses: actions/checkout@v3
446+
uses: actions/checkout@v4
447447
with:
448448
ref: ${{ github.event.inputs.release-committish }}
449449
- name: >-
@@ -541,12 +541,12 @@ jobs:
541541
steps:
542542
- name: Set up Python ${{ matrix.python-version }}
543543
id: python-install
544-
uses: actions/setup-python@v4
544+
uses: actions/setup-python@v5
545545
with:
546546
python-version: ${{ matrix.python-version }}
547547

548548
- name: Grab the source from Git
549-
uses: actions/checkout@v3
549+
uses: actions/checkout@v4
550550
with:
551551
ref: ${{ github.event.inputs.release-committish }}
552552

@@ -598,7 +598,7 @@ jobs:
598598
shell: bash
599599
- name: Set up pip cache
600600
if: fromJSON(steps.py-abi.outputs.is-stable-abi)
601-
uses: actions/cache@v3
601+
uses: actions/cache@v4
602602
with:
603603
path: ${{ steps.pip-cache.outputs.dir }}
604604
key: >-
@@ -659,7 +659,7 @@ jobs:
659659
- name: Produce markdown test summary from JUnit
660660
if: >-
661661
!cancelled()
662-
uses: test-summary/action@v2.0
662+
uses: test-summary/action@v2.4
663663
with:
664664
paths: .test-results/pytest/results.xml
665665
- name: Check if Cobertura XML coverage files exist
@@ -706,7 +706,7 @@ jobs:
706706
- name: Send coverage data to Codecov
707707
if: >-
708708
!cancelled()
709-
uses: codecov/codecov-action@v3
709+
uses: codecov/codecov-action@v5
710710
with:
711711
files: .test-results/pytest/cov.xml
712712
flags: >-

0 commit comments

Comments
 (0)