Skip to content

Commit 3935263

Browse files
Bump the github-actions group across 1 directory with 3 updates (#1732)
Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). 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/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/checkout dependency-version: '6' 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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent f4b07bc commit 3935263

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
lines changed

.github/workflows/api_doc_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-22.04
1414

1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
with:
1818
persist-credentials: false
1919

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343
with:
4444
submodules: recursive
4545

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515

1616
# Run Codespell to check for typos
1717
- name: Run Codespell

.github/workflows/ios.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
outputs:
3737
artifact_name: ${{ steps.artifact_name.outputs.name }}
3838
steps:
39-
- uses: actions/checkout@v5
39+
- uses: actions/checkout@v6
4040
with:
4141
submodules: recursive
4242
- name: Build
@@ -57,7 +57,7 @@ jobs:
5757
ls -la publish
5858
5959
- name: Upload Artifacts
60-
uses: actions/upload-artifact@v5
60+
uses: actions/upload-artifact@v6
6161
with:
6262
name: ${{ steps.artifact_name.outputs.name }}-iOS
6363
path: publish/
@@ -73,7 +73,7 @@ jobs:
7373
name: 🚀 Publish Release Artifacts
7474
steps:
7575
- name: Download all artifacts
76-
uses: actions/download-artifact@v6
76+
uses: actions/download-artifact@v7
7777
with:
7878
path: ${{ needs.ios-build.outputs.artifact_name }}-iOS
7979
pattern: ${{ needs.ios-build.outputs.artifact_name }}-iOS

.github/workflows/linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
# clang11 is covered by openSUSE Leap 15.3
4848

4949
steps:
50-
- uses: actions/checkout@v5
50+
- uses: actions/checkout@v6
5151
with:
5252
submodules: recursive
5353

@@ -170,7 +170,7 @@ jobs:
170170
cmake-data \
171171
ninja-build
172172
173-
- uses: actions/checkout@v5
173+
- uses: actions/checkout@v6
174174
with:
175175
submodules: recursive
176176

.github/workflows/solaris.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v5
32+
uses: actions/checkout@v6
3333
with:
3434
submodules: true
3535

.github/workflows/sonarcloud.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
sonarcloud:
2828
runs-on: ubuntu-22.04
2929
steps:
30-
- uses: actions/checkout@v5
30+
- uses: actions/checkout@v6
3131
with:
3232
# Disabling shallow clone is recommended for improving relevancy of reporting
3333
fetch-depth: 0

.github/workflows/windows.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767

6868
steps:
6969
- name: Checkout code
70-
uses: actions/checkout@v5
70+
uses: actions/checkout@v6
7171
with:
7272
submodules: true
7373

@@ -194,7 +194,7 @@ jobs:
194194
fi
195195
196196
- name: Upload Artifacts
197-
uses: actions/upload-artifact@v5
197+
uses: actions/upload-artifact@v6
198198
with:
199199
name: ${{ steps.artifact_name.outputs.name }}-win10-${{ matrix.platformAlt }}-${{ matrix.osal }}
200200
path: ${{ env.INSTALL_LOCATION }}
@@ -231,7 +231,7 @@ jobs:
231231

232232
steps:
233233
- name: Checkout code
234-
uses: actions/checkout@v5
234+
uses: actions/checkout@v6
235235
with:
236236
submodules: true
237237

@@ -317,7 +317,7 @@ jobs:
317317

318318
steps:
319319
- name: Checkout code
320-
uses: actions/checkout@v5
320+
uses: actions/checkout@v6
321321
with:
322322
submodules: true
323323

@@ -448,7 +448,7 @@ jobs:
448448
fi
449449
450450
- name: Upload Artifacts
451-
uses: actions/upload-artifact@v5
451+
uses: actions/upload-artifact@v6
452452
with:
453453
name: CI-${{ github.run_id }}-mingw-${{ matrix.artifactPrefix }}-${{ matrix.platform }}
454454
path: ${{ env.INSTALL_LOCATION }}
@@ -475,7 +475,7 @@ jobs:
475475
shell: msys2 {0}
476476

477477
steps:
478-
- uses: actions/checkout@v5
478+
- uses: actions/checkout@v6
479479
with:
480480
submodules: recursive
481481

@@ -520,7 +520,7 @@ jobs:
520520
fi
521521
522522
- name: '${{ matrix.icon }} Upload Artifacts'
523-
uses: actions/upload-artifact@v5
523+
uses: actions/upload-artifact@v6
524524
with:
525525
name: CI-${{ github.run_id }}-msys2-${{matrix.sys}}-${{matrix.osal}}
526526
path: ${{env.INSTALL_LOCATION}}
@@ -536,7 +536,7 @@ jobs:
536536
name: 🧪 Acceptance Test
537537
steps:
538538
- name: Download all artifacts
539-
uses: actions/download-artifact@v6
539+
uses: actions/download-artifact@v7
540540
with:
541541
path: artifacts
542542
pattern: fluidsynth-*
@@ -562,7 +562,7 @@ jobs:
562562
name: 🚀 Publish Release Artifacts
563563
steps:
564564
- name: Download all artifacts
565-
uses: actions/download-artifact@v6
565+
uses: actions/download-artifact@v7
566566
with:
567567
path: artifacts
568568
pattern: fluidsynth-*
@@ -593,7 +593,7 @@ jobs:
593593
runs-on: ubuntu-22.04
594594
name: 📢 Announce Release
595595
steps:
596-
- uses: actions/checkout@v5
596+
- uses: actions/checkout@v6
597597
with:
598598
persist-credentials: false
599599

0 commit comments

Comments
 (0)