Skip to content

Commit 96b6fc8

Browse files
chore(ci): bump the actions group across 1 directory with 5 updates (#69)
Bumps the actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [actions/checkout](https://github.com/actions/checkout) | `4` | `7` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `6` | `7` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `8` | 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/checkout` from 4 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v7) Updates `codecov/codecov-action` from 6 to 7 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v6...v7) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `actions/download-artifact` from 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v8) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 5210f12 commit 96b6fc8

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
python-version: ["3.10", "3.11", "3.12", "3.13"]
1515

1616
steps:
17-
- uses: actions/checkout@v6
17+
- uses: actions/checkout@v7
1818

1919
- name: Set up Python ${{ matrix.python-version }}
2020
uses: actions/setup-python@v6
@@ -43,7 +43,7 @@ jobs:
4343

4444
- name: Upload coverage to Codecov
4545
if: matrix.python-version == '3.12'
46-
uses: codecov/codecov-action@v6
46+
uses: codecov/codecov-action@v7
4747
with:
4848
token: ${{ secrets.CODECOV_TOKEN }}
4949
files: ./coverage.xml

.github/workflows/prsop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: PR governance
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v6
15+
- uses: actions/checkout@v7
1616
with:
1717
fetch-depth: 0
1818
fetch-tags: true

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
version: ${{ steps.decide.outputs.version }}
3838
publish: ${{ steps.decide.outputs.publish }}
3939
steps:
40-
- uses: actions/checkout@v4
40+
- uses: actions/checkout@v7
4141

4242
- name: Decide whether this version needs publishing
4343
id: decide
@@ -59,10 +59,10 @@ jobs:
5959
if: needs.check.outputs.publish == 'true'
6060
runs-on: ubuntu-latest
6161
steps:
62-
- uses: actions/checkout@v4
62+
- uses: actions/checkout@v7
6363

6464
- name: Set up Python
65-
uses: actions/setup-python@v5
65+
uses: actions/setup-python@v6
6666
with:
6767
python-version: "3.12"
6868

@@ -78,7 +78,7 @@ jobs:
7878
run: ls -lh dist/
7979

8080
- name: Upload build artifacts
81-
uses: actions/upload-artifact@v4
81+
uses: actions/upload-artifact@v7
8282
with:
8383
name: dist
8484
path: dist/
@@ -95,7 +95,7 @@ jobs:
9595
id-token: write # required for PyPI trusted publishing (OIDC)
9696
steps:
9797
- name: Download build artifacts
98-
uses: actions/download-artifact@v4
98+
uses: actions/download-artifact@v8
9999
with:
100100
name: dist
101101
path: dist/
@@ -112,10 +112,10 @@ jobs:
112112
permissions:
113113
contents: write # required for creating a GitHub release
114114
steps:
115-
- uses: actions/checkout@v4
115+
- uses: actions/checkout@v7
116116

117117
- name: Download build artifacts
118-
uses: actions/download-artifact@v4
118+
uses: actions/download-artifact@v8
119119
with:
120120
name: dist
121121
path: dist/

0 commit comments

Comments
 (0)