Skip to content

Commit 855dcf0

Browse files
dependabot[bot]MTSOnGithub
authored andcommitted
Bump the github-actions group with 3 updates
Bumps the github-actions group with 3 updates: [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). 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/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 5362954 commit 855dcf0

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
python-version: ${{ env.DEFAULT_PYTHON }}
3535

3636
- name: Cache pip
37-
uses: actions/cache@v4
37+
uses: actions/cache@v5
3838
with:
3939
path: ~/.cache/pip
4040
key: ${{ runner.os }}-python-${{ env.DEFAULT_PYTHON }}-changelog-${{ hashFiles('requirements-docs.txt') }}

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
python-version: ${{ env.DEFAULT_PYTHON }}
3737

3838
- name: Cache pip
39-
uses: actions/cache@v4
39+
uses: actions/cache@v5
4040
with:
4141
path: ~/.cache/pip
4242
key: ${{ runner.os }}-python-${{ env.DEFAULT_PYTHON }}-codeql-${{ hashFiles('requirements*.txt') }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
python-version: ${{ env.DEFAULT_PYTHON }}
3636

3737
- name: Cache pip
38-
uses: actions/cache@v4
38+
uses: actions/cache@v5
3939
with:
4040
path: ~/.cache/pip
4141
key: ${{ runner.os }}-python-${{ env.DEFAULT_PYTHON }}-release-${{ hashFiles('requirements-docs.txt') }}

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
python-version: ${{ matrix.python-version }}
4848

4949
- name: Cache pip
50-
uses: actions/cache@v4
50+
uses: actions/cache@v5
5151
with:
5252
path: ~/.cache/pip
5353
key: ${{ runner.os }}-python-${{ matrix.python-version }}-tests-${{ hashFiles('requirements*.txt') }}
@@ -75,7 +75,7 @@ jobs:
7575
./pytest_runner.sh
7676
7777
- name: Upload coverage results
78-
uses: actions/upload-artifact@v5
78+
uses: actions/upload-artifact@v6
7979
with:
8080
name: coverage-${{ matrix.python-version }}-os-${{ matrix.os }}
8181
path: reports/*
@@ -97,7 +97,7 @@ jobs:
9797
python-version: ${{ env.DEFAULT_PYTHON }}
9898

9999
- name: Cache pip
100-
uses: actions/cache@v4
100+
uses: actions/cache@v5
101101
with:
102102
path: ~/.cache/pip
103103
key: ${{ runner.os }}-python-${{ env.DEFAULT_PYTHON }}-coverage-${{ hashFiles('requirements*.txt') }}
@@ -113,7 +113,7 @@ jobs:
113113
run: pip install -I -r requirements-test.txt
114114

115115
- name: Download all coverage reports
116-
uses: actions/download-artifact@v6
116+
uses: actions/download-artifact@v7
117117
with:
118118
path: reports/
119119
pattern: coverage-*

0 commit comments

Comments
 (0)