Skip to content

Commit f9be2ec

Browse files
Bump the github-actions group with 5 updates (#182)
Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | | [actions/stale](https://github.com/actions/stale) | `9` | `10` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) 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/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) Updates `actions/stale` from 9 to 10 - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](actions/stale@v9...v10) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/stale dependency-version: '10' 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 d8515db commit f9be2ec

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

.github/workflows/actions.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
KERAS_BACKEND: ${{ matrix.backend }}
2525

2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v6
2828

2929
- name: Set up Python 3.11
30-
uses: actions/setup-python@v5
30+
uses: actions/setup-python@v6
3131
with:
3232
python-version: "3.11"
3333

@@ -38,7 +38,7 @@ jobs:
3838
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
3939
4040
- name: pip cache
41-
uses: actions/cache@v4
41+
uses: actions/cache@v5
4242
with:
4343
path: ${{ steps.pip-cache.outputs.dir }}
4444
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}
@@ -68,7 +68,7 @@ jobs:
6868

6969
steps:
7070
- name: Checkout repository
71-
uses: actions/checkout@v4
71+
uses: actions/checkout@v6
7272

7373
- name: Check CUDA Version
7474
run: nvidia-smi
@@ -109,7 +109,7 @@ jobs:
109109

110110
steps:
111111
- name: Checkout repository
112-
uses: actions/checkout@v4
112+
uses: actions/checkout@v6
113113

114114
- name: Install Dependencies
115115
run: pip install --no-cache-dir -r requirements-${{ matrix.backend }}-tpu.txt
@@ -147,9 +147,9 @@ jobs:
147147
name: Check the code format
148148
runs-on: ubuntu-latest
149149
steps:
150-
- uses: actions/checkout@v4
150+
- uses: actions/checkout@v6
151151
- name: Set up Python 3.11
152-
uses: actions/setup-python@v5
152+
uses: actions/setup-python@v6
153153
with:
154154
python-version: "3.11"
155155
- name: Get pip cache dir
@@ -158,7 +158,7 @@ jobs:
158158
python -m pip install --upgrade pip setuptools
159159
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
160160
- name: pip cache
161-
uses: actions/cache@v4
161+
uses: actions/cache@v5
162162
with:
163163
path: ${{ steps.pip-cache.outputs.dir }}
164164
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}

.github/workflows/auto-assignment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
welcome:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
17-
- uses: actions/github-script@v7
16+
- uses: actions/checkout@v6
17+
- uses: actions/github-script@v8
1818
with:
1919
script: |
2020
const script = require('./\.github/workflows/scripts/auto-assignment.js')

.github/workflows/nightly.yml

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

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
name: Build and publish to PyPI
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414
- name: Set up Python
15-
uses: actions/setup-python@v5
15+
uses: actions/setup-python@v6
1616
with:
1717
python-version: "3.11"
1818
- name: Get pip cache dir
@@ -21,7 +21,7 @@ jobs:
2121
python -m pip install --upgrade pip setuptools
2222
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
2323
- name: pip cache
24-
uses: actions/cache@v4
24+
uses: actions/cache@v5
2525
with:
2626
path: ${{ steps.pip-cache.outputs.dir }}
2727
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}

.github/workflows/stale-issue-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
pull-requests: write
1111
steps:
1212
- name: Awaiting response issues
13-
uses: actions/stale@v9
13+
uses: actions/stale@v10
1414
with:
1515
days-before-issue-stale: 14
1616
days-before-issue-close: 14
@@ -32,7 +32,7 @@ jobs:
3232
close-pr-message: "This PR was closed because it has been inactive for 28 days. Please reopen if you'd like to work on this further."
3333
repo-token: ${{ secrets.GITHUB_TOKEN }}
3434
- name: Contribution issues
35-
uses: actions/stale@v9
35+
uses: actions/stale@v10
3636
with:
3737
days-before-issue-stale: 180
3838
days-before-issue-close: 365

0 commit comments

Comments
 (0)