Skip to content

Commit e9cfd19

Browse files
Bump the github-actions group with 2 updates (#34)
Bumps the github-actions group with 2 updates: [actions/cache](https://github.com/actions/cache) and [codecov/codecov-action](https://github.com/codecov/codecov-action). 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 `codecov/codecov-action` from 3 to 4 - [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...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent a5b6de3 commit e9cfd19

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/actions.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
python -m pip install --upgrade pip setuptools
3636
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
3737
- name: Pip cache
38-
uses: actions/cache@v3
38+
uses: actions/cache@v4
3939
with:
4040
path: ${{ steps.pip-cache.outputs.dir }}
4141
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}-${{ hashFiles('requirements.txt') }}
@@ -48,7 +48,7 @@ jobs:
4848
pytest
4949
coverage xml -o coverage.xml
5050
- name: Upload coverage reports to Codecov
51-
uses: codecov/codecov-action@v3
51+
uses: codecov/codecov-action@v4
5252
with:
5353
token: ${{ secrets.CODECOV_TOKEN }}
5454
files: coverage.xml
@@ -70,7 +70,7 @@ jobs:
7070
python -m pip install --upgrade pip setuptools
7171
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
7272
- name: pip cache
73-
uses: actions/cache@v3
73+
uses: actions/cache@v4
7474
with:
7575
path: ${{ steps.pip-cache.outputs.dir }}
7676
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}-${{ hashFiles('requirements.txt') }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
python -m pip install --upgrade pip setuptools
2525
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
2626
- name: Pip cache
27-
uses: actions/cache@v3
27+
uses: actions/cache@v4
2828
with:
2929
path: ${{ steps.pip-cache.outputs.dir }}
3030
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}-${{ hashFiles('requirements.txt') }}

0 commit comments

Comments
 (0)