Skip to content

Commit 26962ee

Browse files
ci: bump the actions-deps group across 1 directory with 2 updates
Bumps the actions-deps group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 8c93364 commit 26962ee

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ jobs:
2020
matrix:
2121
test_env: [django, functional, api]
2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
with:
2525
submodules: true
2626
- name: Set up Docker Buildx
2727
uses: docker/setup-buildx-action@v3
2828
- name: Cache Docker layers
29-
uses: actions/cache@v4
29+
uses: actions/cache@v5
3030
with:
3131
path: /tmp/.buildx-cache
3232
# using `-v3` in key to clear old cache due to errors
@@ -117,7 +117,7 @@ jobs:
117117
matrix:
118118
tox_env: [docs, precommit, mypy, lint]
119119
steps:
120-
- uses: actions/checkout@v5
120+
- uses: actions/checkout@v6
121121
with:
122122
submodules: true
123123
- uses: actions/setup-python@v6

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616
publish:
1717
runs-on: ubuntu-22.04
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0
2222
submodules: true
2323
- name: Set up Docker Buildx
2424
uses: docker/setup-buildx-action@v3
2525
- name: Cache Docker layers
26-
uses: actions/cache@v4
26+
uses: actions/cache@v5
2727
with:
2828
path: /tmp/.buildx-cache
2929
# using `v2` in key to clear old cache due to errors

0 commit comments

Comments
 (0)