Skip to content

Commit d4873cf

Browse files
dependabot[bot]craftablescience
authored andcommitted
ci: bump the ci group with 5 updates
Bumps the ci group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [jurplel/install-qt-action](https://github.com/jurplel/install-qt-action) | `3` | `4` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `6` | | [egor-tensin/setup-gcc](https://github.com/egor-tensin/setup-gcc) | `1` | `2` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `jurplel/install-qt-action` from 3 to 4 - [Release notes](https://github.com/jurplel/install-qt-action/releases) - [Commits](jurplel/install-qt-action@v3...v4) Updates `actions/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v6) Updates `egor-tensin/setup-gcc` from 1 to 2 - [Release notes](https://github.com/egor-tensin/setup-gcc/releases) - [Commits](egor-tensin/setup-gcc@v1...v2) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci - dependency-name: jurplel/install-qt-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci - dependency-name: egor-tensin/setup-gcc dependency-version: '2' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent bdd886d commit d4873cf

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
shell: cmd
2626
steps:
2727
- name: Checkout Repository
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v6
2929
with:
3030
submodules: recursive
3131

@@ -36,7 +36,7 @@ jobs:
3636
spectre: true
3737

3838
- name: Install Qt
39-
uses: jurplel/install-qt-action@v3
39+
uses: jurplel/install-qt-action@v4
4040
with:
4141
aqtversion: '==3.1.*'
4242
version: ${{env.QT_VERSION}}
@@ -56,7 +56,7 @@ jobs:
5656
cmake --build . --config ${{matrix.build_type}} -t SDKLauncher -- -j%NUMBER_OF_PROCESSORS%
5757
5858
- name: Upload SDK Launcher
59-
uses: actions/upload-artifact@v4
59+
uses: actions/upload-artifact@v6
6060
with:
6161
name: 'SDKLauncher-${{matrix.target}}-Windows-${{matrix.compiler}}-${{matrix.build_type}}'
6262
path: ${{env.BUILD_DIR}}/SDKLauncher.exe
@@ -71,7 +71,7 @@ jobs:
7171
runs-on: ubuntu-22.04
7272
steps:
7373
- name: Checkout Repository
74-
uses: actions/checkout@v4
74+
uses: actions/checkout@v6
7575
with:
7676
submodules: recursive
7777

@@ -80,13 +80,13 @@ jobs:
8080

8181
- name: Install GCC [compiler:gcc]
8282
if: ${{matrix.compiler == 'gcc'}}
83-
uses: egor-tensin/setup-gcc@v1
83+
uses: egor-tensin/setup-gcc@v2
8484
with:
8585
version: 11
8686
platform: x64
8787

8888
- name: Install Qt
89-
uses: jurplel/install-qt-action@v3
89+
uses: jurplel/install-qt-action@v4
9090
with:
9191
aqtversion: '==3.1.*'
9292
version: ${{env.QT_VERSION}}
@@ -105,7 +105,7 @@ jobs:
105105
run: cmake --build . --config ${{matrix.build_type}} -t SDKLauncher -- -j$(nproc)
106106

107107
- name: Upload SDK Launcher
108-
uses: actions/upload-artifact@v4
108+
uses: actions/upload-artifact@v6
109109
with:
110110
name: 'SDKLauncher-${{matrix.target}}-Linux-${{matrix.compiler}}-${{matrix.build_type}}'
111111
path: ${{env.BUILD_DIR}}/SDKLauncher
@@ -118,7 +118,7 @@ jobs:
118118
runs-on: ubuntu-latest
119119
steps:
120120
- name: Download Artifacts
121-
uses: actions/github-script@v7
121+
uses: actions/github-script@v8
122122
with:
123123
script: |
124124
const artifacts = (await github.rest.actions.listWorkflowRunArtifacts({
@@ -142,7 +142,7 @@ jobs:
142142
console.log("Artifact download complete!");
143143
144144
- name: Upload Release
145-
uses: actions/upload-artifact@v4
145+
uses: actions/upload-artifact@v6
146146
with:
147147
name: Release-Artifacts
148148
path: |

0 commit comments

Comments
 (0)