Skip to content

Commit 728f0d1

Browse files
Bump the github-actions group with 2 updates (#2786)
Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '6' 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 271ed7f commit 728f0d1

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/actions.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
env:
3434
KERAS_BACKEND: ${{ matrix.backend }}
3535
steps:
36-
- uses: actions/checkout@v6
36+
- uses: actions/checkout@v7
3737
- name: Set up Python 3.11
3838
uses: actions/setup-python@v6
3939
with:
@@ -44,7 +44,7 @@ jobs:
4444
python -m pip install --upgrade pip setuptools
4545
echo "::set-output name=dir::$(pip cache dir)"
4646
- name: pip cache
47-
uses: actions/cache@v5
47+
uses: actions/cache@v6
4848
with:
4949
path: ${{ steps.pip-cache.outputs.dir }}
5050
key: ${{ runner.os }}-pip-${{ hashFiles('requirements-common.txt') }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('pyproject.toml') }}
@@ -79,7 +79,7 @@ jobs:
7979
name: Check the code format
8080
runs-on: ubuntu-latest
8181
steps:
82-
- uses: actions/checkout@v6
82+
- uses: actions/checkout@v7
8383
- name: Set up Python 3.11
8484
uses: actions/setup-python@v6
8585
with:
@@ -90,7 +90,7 @@ jobs:
9090
python -m pip install --upgrade pip setuptools
9191
echo "::set-output name=dir::$(pip cache dir)"
9292
- name: pip cache
93-
uses: actions/cache@v5
93+
uses: actions/cache@v6
9494
with:
9595
path: ${{ steps.pip-cache.outputs.dir }}
9696
key: ${{ runner.os }}-pip-${{ hashFiles('requirements-common.txt') }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('pyproject.toml') }}

.github/workflows/auto-assignment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
welcome:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v6
19+
- uses: actions/checkout@v7
2020
- uses: actions/github-script@v9
2121
with:
2222
script: |

.github/workflows/gemini-automated-issue-triage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
return issue;
7575
7676
- name: 'Checkout'
77-
uses: 'actions/checkout@v6'
77+
uses: 'actions/checkout@v7'
7878

7979
- name: 'Get Repository Labels'
8080
id: 'get_labels'

.github/workflows/labeler.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
welcome:
3535
runs-on: ubuntu-latest
3636
steps:
37-
- uses: actions/checkout@v6
37+
- uses: actions/checkout@v7
3838
- uses: actions/github-script@v9
3939
with:
4040
script: |

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
needs: [run-test-for-nightly]
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v6
19+
- uses: actions/checkout@v7
2020
- name: Set up Python
2121
uses: actions/setup-python@v6
2222
with:
@@ -27,7 +27,7 @@ jobs:
2727
python -m pip install --upgrade pip setuptools
2828
echo "::set-output name=dir::$(pip cache dir)"
2929
- name: pip cache
30-
uses: actions/cache@v5
30+
uses: actions/cache@v6
3131
with:
3232
path: ${{ steps.pip-cache.outputs.dir }}
3333
key: ${{ runner.os }}-pip-${{ hashFiles('requirements-common.txt') }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('pyproject.toml') }}

.github/workflows/publish-to-pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Build and publish to PyPI
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v6
13+
- uses: actions/checkout@v7
1414
- name: Set up Python
1515
uses: actions/setup-python@v6
1616
with:
@@ -21,7 +21,7 @@ jobs:
2121
python -m pip install --upgrade pip setuptools
2222
echo "::set-output name=dir::$(pip cache dir)"
2323
- name: pip cache
24-
uses: actions/cache@v5
24+
uses: actions/cache@v6
2525
with:
2626
path: ${{ steps.pip-cache.outputs.dir }}
2727
key: ${{ runner.os }}-pip-${{ hashFiles('requirements-common.txt') }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('pyproject.toml') }}

0 commit comments

Comments
 (0)