Skip to content

Commit 664ea8b

Browse files
Bump the actions group with 3 updates
Bumps the actions group with 3 updates: [actions/setup-python](https://github.com/actions/setup-python), [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) and [actions/cache](https://github.com/actions/cache). Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `peter-evans/create-pull-request` from 7.0.8 to 8.1.0 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](peter-evans/create-pull-request@271a8d0...c0f553f) 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) --- 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: peter-evans/create-pull-request dependency-version: 8.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent bff57a8 commit 664ea8b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/check_format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: actions/checkout@v6
2222

2323
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v5
24+
uses: actions/setup-python@v6
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727

.github/workflows/doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
with:
3131
fetch-depth: 0
3232
- name: Set up Python ${{ matrix.python-version }}
33-
uses: actions/setup-python@v5
33+
uses: actions/setup-python@v6
3434
with:
3535
python-version: ${{ matrix.python-version }}
3636
- name: Setup Headless

.github/workflows/precommit_update.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v6
1414

15-
- uses: actions/setup-python@v5
15+
- uses: actions/setup-python@v6
1616

1717
- uses: browniebroke/pre-commit-autoupdate-action@f5c3ec85103b9f8f9be60b9c006cec763d2bdd02 # v1.0.1
1818

19-
- uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
19+
- uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0
2020
if: always()
2121
with:
2222
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
- uses: actions/checkout@v6
6464
with:
6565
fetch-depth: 0
66-
- uses: actions/cache@v4
66+
- uses: actions/cache@v5
6767
if: startsWith(runner.os, 'Linux')
6868
with:
6969
path: |
@@ -72,22 +72,22 @@ jobs:
7272
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
7373
restore-keys: |
7474
${{ runner.os }}-pip-
75-
- uses: actions/cache@v4
75+
- uses: actions/cache@v5
7676
if: startsWith(runner.os, 'macOS')
7777
with:
7878
path: ~/Library/Caches/pip
7979
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
8080
restore-keys: |
8181
${{ runner.os }}-pip-
82-
- uses: actions/cache@v4
82+
- uses: actions/cache@v5
8383
if: startsWith(runner.os, 'Windows')
8484
with:
8585
path: ~/.pip
8686
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
8787
restore-keys: |
8888
${{ runner.os }}-pip-
8989
- name: Set up Python ${{ matrix.python-version }}
90-
uses: actions/setup-python@v5
90+
uses: actions/setup-python@v6
9191
with:
9292
python-version: ${{ matrix.python-version }}
9393
- name: Set PYGFX_DEFAULT_PPAA

0 commit comments

Comments
 (0)