Skip to content

Commit c57d4b2

Browse files
build(deps): bump the actions group with 3 updates (#17)
* build(deps): bump the actions group with 3 updates Bumps the actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/download-artifact](https://github.com/actions/download-artifact) and [codecov/codecov-action](https://github.com/codecov/codecov-action). 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/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) Updates `codecov/codecov-action` from 5.4.3 to 5.5.0 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v5.4.3...v5.5.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: codecov/codecov-action dependency-version: 5.5.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> * ci: update versions to SHA Signed-off-by: nstarman <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: nstarman <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: nstarman <[email protected]>
1 parent 06b8cc1 commit c57d4b2

File tree

2 files changed

+11
-16
lines changed

2 files changed

+11
-16
lines changed

.github/workflows/cd.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ jobs:
2525
runs-on: ubuntu-latest
2626

2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2929
with:
3030
fetch-depth: 0
3131

32-
- uses: hynek/build-and-inspect-python-package@v2
32+
- uses: hynek/build-and-inspect-python-package@c52c3a4710070b50470d903818a7b25115dcd076 # v2.13.0
3333

3434
test-publish:
3535
needs: [dist]
@@ -42,12 +42,12 @@ jobs:
4242
if: github.event_name == 'release' && github.event.action == 'published'
4343

4444
steps:
45-
- uses: actions/download-artifact@v4
45+
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
4646
with:
4747
name: Packages
4848
path: dist
4949

50-
- uses: pypa/gh-action-pypi-publish@release/v1
50+
- uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4
5151
if: github.event_name == 'release' && github.event.action == 'published'
5252
with:
5353
# Remember to tell (test-)pypi about this repo before publishing
@@ -64,9 +64,9 @@ jobs:
6464
if: github.event_name == 'release' && github.event.action == 'published'
6565

6666
steps:
67-
- uses: actions/download-artifact@v4
67+
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
6868
with:
6969
name: Packages
7070
path: dist
7171

72-
- uses: pypa/gh-action-pypi-publish@release/v1
72+
- uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4

.github/workflows/ci.yml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,8 @@ jobs:
2121
name: Format
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v4
25-
with:
26-
fetch-depth: 0
27-
- uses: actions/setup-python@v5
24+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
25+
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
2826
with:
2927
python-version: "3.x"
3028
# - uses: pre-commit/[email protected]
@@ -44,11 +42,8 @@ jobs:
4442
runs-on: [ubuntu-latest, windows-latest, macos-latest]
4543

4644
steps:
47-
- uses: actions/checkout@v4
48-
with:
49-
fetch-depth: 0
50-
51-
- uses: actions/setup-python@v5
45+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
46+
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
5247
with:
5348
python-version: ${{ matrix.python-version }}
5449
allow-prereleases: true
@@ -62,6 +57,6 @@ jobs:
6257
--durations=20
6358
6459
- name: Upload coverage report
65-
uses: codecov/codecov-action@v5.4.3
60+
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
6661
with:
6762
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)