Skip to content

Commit d6907ae

Browse files
Bump the github-actions group with 2 updates
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>
1 parent 6b63472 commit d6907ae

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/build.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
name: "'${{ matrix.toxenv }}' on py${{ matrix.py }}"
1818
steps:
19-
- uses: actions/checkout@v6
19+
- uses: actions/checkout@v7
2020

2121
- name: get date for caching
2222
run: /bin/date -u "+%U" > cachedate.txt
@@ -40,7 +40,7 @@ jobs:
4040
test-sdist:
4141
runs-on: ubuntu-latest
4242
steps:
43-
- uses: actions/checkout@v6
43+
- uses: actions/checkout@v7
4444
- uses: actions/setup-python@v6
4545
with:
4646
python-version: "3.x"
@@ -66,7 +66,7 @@ jobs:
6666
name: "Test on ${{ matrix.os }}, py${{ matrix.py }}"
6767
runs-on: "${{ matrix.os }}-latest"
6868
steps:
69-
- uses: actions/checkout@v6
69+
- uses: actions/checkout@v7
7070

7171
- name: get date for caching
7272
run: /bin/date -u "+%U" > cachedate.txt
@@ -86,7 +86,7 @@ jobs:
8686
- run: python -m pip install tox tox-uv
8787

8888
- name: cache tox virtualenvs
89-
uses: actions/cache@v5
89+
uses: actions/cache@v6
9090
with:
9191
path: .tox
9292
key: >
@@ -110,7 +110,7 @@ jobs:
110110
runs-on: ubuntu-latest
111111
name: "Collate results to check for skipped tests"
112112
steps:
113-
- uses: actions/checkout@v6
113+
- uses: actions/checkout@v7
114114
- uses: actions/setup-python@v6
115115
with:
116116
python-version: "3.x"
@@ -128,7 +128,7 @@ jobs:
128128
ensure-catalog-matches-hook-config:
129129
runs-on: ubuntu-latest
130130
steps:
131-
- uses: actions/checkout@v6
131+
- uses: actions/checkout@v7
132132

133133
- name: get date for caching
134134
run: /bin/date -u "+%U" > cachedate.txt
@@ -157,7 +157,7 @@ jobs:
157157
name: "Self-Check"
158158
runs-on: ubuntu-latest
159159
steps:
160-
- uses: actions/checkout@v6
160+
- uses: actions/checkout@v7
161161

162162
- name: get date for caching
163163
run: /bin/date -u "+%U" > cachedate.txt

.github/workflows/cron.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
vendor-schemas:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v6
13+
- uses: actions/checkout@v7
1414
- uses: actions/setup-python@v6
1515
with:
1616
python-version: '3.x'

.github/workflows/publish_to_pypi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v6
12+
- uses: actions/checkout@v7
1313
- uses: actions/setup-python@v6
1414
with:
1515
python-version: "3.11"

.github/workflows/publish_to_test_pypi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- uses: actions/checkout@v6
19+
- uses: actions/checkout@v7
2020
- uses: actions/setup-python@v6
2121
with:
2222
python-version: "3.11"

0 commit comments

Comments
 (0)