Skip to content

Commit e54ceea

Browse files
Bump the github-actions group with 2 updates
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] <[email protected]>
1 parent 8aa8dc2 commit e54ceea

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Diff for: .github/workflows/actions.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
python -m pip install --upgrade pip setuptools
2727
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
2828
- name: pip cache
29-
uses: actions/cache@v3
29+
uses: actions/cache@v4
3030
with:
3131
path: ${{ steps.pip-cache.outputs.dir }}
3232
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}
@@ -39,7 +39,7 @@ jobs:
3939
run: |
4040
pytest --cov=keras_tuner --cov-report xml:coverage.xml
4141
- name: Codecov
42-
uses: codecov/codecov-action@v3
42+
uses: codecov/codecov-action@v4
4343
multibackend:
4444
name: Test the code with Keras Core
4545
strategy:
@@ -59,7 +59,7 @@ jobs:
5959
python -m pip install --upgrade pip setuptools
6060
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
6161
- name: pip cache
62-
uses: actions/cache@v3
62+
uses: actions/cache@v4
6363
with:
6464
path: ${{ steps.pip-cache.outputs.dir }}
6565
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}
@@ -76,7 +76,7 @@ jobs:
7676
run: |
7777
pytest --cov=keras_tuner --cov-report xml:coverage.xml
7878
- name: Codecov
79-
uses: codecov/codecov-action@v3
79+
uses: codecov/codecov-action@v4
8080
format:
8181
name: Check the code format
8282
runs-on: ubuntu-latest
@@ -92,7 +92,7 @@ jobs:
9292
python -m pip install --upgrade pip setuptools
9393
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
9494
- name: pip cache
95-
uses: actions/cache@v3
95+
uses: actions/cache@v4
9696
with:
9797
path: ${{ steps.pip-cache.outputs.dir }}
9898
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}
@@ -117,7 +117,7 @@ jobs:
117117
python -m pip install --upgrade pip setuptools
118118
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
119119
- name: pip cache
120-
uses: actions/cache@v3
120+
uses: actions/cache@v4
121121
with:
122122
path: ${{ steps.pip-cache.outputs.dir }}
123123
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}
@@ -142,7 +142,7 @@ jobs:
142142
python -m pip install --upgrade pip setuptools
143143
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
144144
- name: pip cache
145-
uses: actions/cache@v3
145+
uses: actions/cache@v4
146146
with:
147147
path: ${{ steps.pip-cache.outputs.dir }}
148148
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}

Diff for: .github/workflows/integration_tests.yml

+1-1
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') }}

0 commit comments

Comments
 (0)