Skip to content

Commit d5220aa

Browse files
Bump the actions group with 3 updates (#481)
Bumps the 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: actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 7fc957b commit d5220aa

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.github/workflows/build.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
with:
6363
python-version: ${{ matrix.python-version }}
6464
- name: Cache node.js modules
65-
uses: actions/cache@v4
65+
uses: actions/cache@v5
6666
with:
6767
path: "**/node_modules"
6868
key: ${{ runner.os }}-${{ matrix.node-version }}-node_modules-${{ hashFiles('**/package-lock.json') }}
@@ -102,7 +102,7 @@ jobs:
102102
with:
103103
python-version: ${{ matrix.python-version }}
104104
- name: Cache node.js modules
105-
uses: actions/cache@v4
105+
uses: actions/cache@v5
106106
with:
107107
path: "**/node_modules"
108108
key: ${{ runner.os }}-${{ matrix.node-version }}-node_modules-${{ hashFiles('**/package-lock.json') }}
@@ -119,7 +119,7 @@ jobs:
119119
uv pip install dist/*.whl
120120
shell: bash
121121
- name: Upload wheels as artifacts
122-
uses: actions/upload-artifact@v5
122+
uses: actions/upload-artifact@v6
123123
with:
124124
name: python-packages-${{ runner.os }}
125125
path: |
@@ -128,7 +128,7 @@ jobs:
128128
uses: ts-graphviz/setup-graphviz@b1de5da23ed0a6d14e0aeee8ed52fdd87af2363c # v2.0.2
129129
with:
130130
macos-skip-brew-update: "true"
131-
- uses: actions/cache@v4
131+
- uses: actions/cache@v5
132132
with:
133133
path: ${{ github.workspace }}/theme_build_cache
134134
key: theme-build-cache-${{ runner.os }}-${{ github.run_id }}
@@ -137,7 +137,7 @@ jobs:
137137
SPHINX_IMMATERIAL_EXTERNAL_RESOURCE_CACHE_DIR: ${{ github.workspace }}/theme_build_cache
138138
run: uvx nox -s docs --forcecolor
139139
- name: Upload doc builds as artifacts
140-
uses: actions/upload-artifact@v5
140+
uses: actions/upload-artifact@v6
141141
with:
142142
name: doc-builds-${{ runner.os }}
143143
path: docs/_build/
@@ -180,7 +180,7 @@ jobs:
180180
with:
181181
python-version: ${{ matrix.python-version }}
182182
- name: Cache node.js modules
183-
uses: actions/cache@v4
183+
uses: actions/cache@v5
184184
with:
185185
path: "**/node_modules"
186186
key: ${{ runner.os }}-${{ matrix.node-version }}-node_modules-${{ hashFiles('**/package-lock.json') }}
@@ -191,7 +191,7 @@ jobs:
191191
uses: ts-graphviz/setup-graphviz@b1de5da23ed0a6d14e0aeee8ed52fdd87af2363c # v2.0.2
192192
with:
193193
macos-skip-brew-update: "true"
194-
- uses: actions/cache/restore@v4
194+
- uses: actions/cache/restore@v5
195195
with:
196196
path: ${{ github.workspace }}/theme_build_cache
197197
key: theme-build-cache-${{ runner.os }}-${{ github.run_id }}
@@ -203,7 +203,7 @@ jobs:
203203
# `coverage run` cmd adds the working dir to python path, so no need to install pkg here
204204
run: uvx nox -s tests --forcecolor --python ${{ matrix.python-version }}
205205
- name: Upload coverage data
206-
uses: actions/upload-artifact@v5
206+
uses: actions/upload-artifact@v6
207207
with:
208208
name: coverage-data-${{ runner.os }}-py${{ matrix.python-version }}
209209
path: .coverage*
@@ -217,7 +217,7 @@ jobs:
217217
with:
218218
persist-credentials: false
219219
- name: Download all artifacts
220-
uses: actions/download-artifact@v6
220+
uses: actions/download-artifact@v7
221221
with:
222222
merge-multiple: true
223223
pattern: coverage-data-*
@@ -245,17 +245,17 @@ jobs:
245245
needs: [build]
246246
steps:
247247
- name: Download Linux package
248-
uses: actions/download-artifact@v6
248+
uses: actions/download-artifact@v7
249249
with:
250250
name: python-packages-Linux
251251
path: dist-Linux
252252
- name: Download macOS package
253-
uses: actions/download-artifact@v6
253+
uses: actions/download-artifact@v7
254254
with:
255255
name: python-packages-macOS
256256
path: dist-macOS
257257
- name: Download Windows package
258-
uses: actions/download-artifact@v6
258+
uses: actions/download-artifact@v7
259259
with:
260260
name: python-packages-Windows
261261
path: dist-Windows
@@ -275,7 +275,7 @@ jobs:
275275
runs-on: ubuntu-latest
276276
needs: [build, test]
277277
steps:
278-
- uses: actions/download-artifact@v6
278+
- uses: actions/download-artifact@v7
279279
with:
280280
name: python-packages-Linux
281281
path: dist

0 commit comments

Comments
 (0)