Skip to content

Commit 088aa84

Browse files
CI(deps): Bump the ci-deps group with 2 updates
Bumps the ci-deps group with 2 updates: [actions/cache](https://github.com/actions/cache) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/cache` from 5.0.1 to 5.0.4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5.0.1...v5.0.4) Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: ci-deps - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-deps ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 42d0fef commit 088aa84

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/linux_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
run: echo "timestamp=$(date -u "+%Y-%m-%d-%H;%M;%S")" >> $GITHUB_OUTPUT
7979

8080
- name: Cache ccache
81-
uses: actions/cache@v5.0.1
81+
uses: actions/cache@v5.0.4
8282
with:
8383
path: .ccache
8484
key: ${{ inputs.os }} ${{ inputs.platform }} ${{ inputs.compiler }} ccache ${{ steps.ccache_cache_timestamp.outputs.timestamp }}
@@ -259,7 +259,7 @@ jobs:
259259
echo "appimage-path=${APPIMAGE_NAME}" >> $GITHUB_OUTPUT
260260
261261
- name: Upload AppImage artifact
262-
uses: actions/upload-artifact@v6
262+
uses: actions/upload-artifact@v7
263263
with:
264264
name: ${{ steps.artifact-metadata.outputs.artifact-name }}-AppImage
265265
path: ${{ steps.create-appimage.outputs.appimage-path }}

.github/workflows/macos_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
run: echo "timestamp=$(date -u "+%Y-%m-%d-%H;%M;%S")" >> $GITHUB_OUTPUT
7575

7676
- name: Cache ccache
77-
uses: actions/cache@v5.0.1
77+
uses: actions/cache@v5.0.4
7878
with:
7979
path: .ccache
8080
key: ${{ inputs.os }} ccache ${{ steps.ccache_cache_timestamp.outputs.timestamp }}
@@ -147,7 +147,7 @@ jobs:
147147
tar --options xz:compression-level=9 -cvJf "${{ steps.artifact-metadata.outputs.artifact-name }}.tar.xz" "$APPNAME.app"
148148
149149
- name: Upload artifact
150-
uses: actions/upload-artifact@v6
150+
uses: actions/upload-artifact@v7
151151
with:
152152
name: ${{ steps.artifact-metadata.outputs.artifact-name }}
153153
path: ci-artifacts/*.tar.xz

.github/workflows/windows_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ jobs:
142142
run: cmake --build --preset %PRESET%
143143

144144
- name: Upload artifact
145-
uses: actions/upload-artifact@v6
145+
uses: actions/upload-artifact@v7
146146
with:
147147
name: ${{ steps.artifact-metadata.outputs.artifact-name }}
148148
path: |
@@ -156,7 +156,7 @@ jobs:
156156
overwrite: true
157157

158158
- name: Upload symbols
159-
uses: actions/upload-artifact@v6
159+
uses: actions/upload-artifact@v7
160160
with:
161161
name: ${{ steps.artifact-metadata.outputs.artifact-name }}-symbols
162162
path: |

0 commit comments

Comments
 (0)