Skip to content

Commit 9a740d0

Browse files
Bump the github-action-deps group with 4 updates
Bumps the github-action-deps group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/setup-dotnet](https://github.com/actions/setup-dotnet), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/setup-dotnet` from 4 to 5 - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](actions/setup-dotnet@v4...v5) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-deps - dependency-name: actions/setup-dotnet dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-deps - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-deps - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-deps ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 68e9a34 commit 9a740d0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ jobs:
3535
architecture: ARM64
3636

3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v5
3939
with:
4040
fetch-depth: 0
4141
submodules: recursive
4242

4343
- name: Setup .NET
4444
if: matrix.os == 'windows-latest'
45-
uses: actions/setup-dotnet@v4
45+
uses: actions/setup-dotnet@v5
4646
with:
4747
dotnet-version: 8.0.x
4848

@@ -52,7 +52,7 @@ jobs:
5252
shell: bash
5353

5454
- name: Upload source package
55-
uses: actions/upload-artifact@v4
55+
uses: actions/upload-artifact@v5
5656
if: matrix.os == 'windows-latest' && matrix.architecture == 'x64'
5757
with:
5858
name: win-x64-source
@@ -80,21 +80,21 @@ jobs:
8080
shell: bash
8181

8282
- name: Upload win-${{ matrix.architecture }} ${{ github.event.inputs.ReleaseType || 'Release' }}
83-
uses: actions/upload-artifact@v4
83+
uses: actions/upload-artifact@v5
8484
if: matrix.os == 'windows-latest'
8585
with:
8686
name: win-${{ matrix.architecture }}
8787
path: cimgui\build\${{ matrix.architecture }}\${{ github.event.inputs.ReleaseType || 'Release' }}\*
8888

8989
- name: Upload ${{ matrix.os }} ${{ github.event.inputs.ReleaseType || 'Release' }}
90-
uses: actions/upload-artifact@v4
90+
uses: actions/upload-artifact@v5
9191
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
9292
with:
9393
name: ${{ matrix.os }}-x64
9494
path: cimgui/build/${{ github.event.inputs.ReleaseType || 'Release' }}/*
9595

9696
- name: Upload Json Files
97-
uses: actions/upload-artifact@v4
97+
uses: actions/upload-artifact@v5
9898
if: matrix.os == 'windows-latest' && matrix.architecture == 'x64'
9999
with:
100100
name: JsonFiles
@@ -106,7 +106,7 @@ jobs:
106106
if: startsWith(github.ref, 'refs/tags/')
107107
steps:
108108
- name: Download Artifacts
109-
uses: actions/download-artifact@v4
109+
uses: actions/download-artifact@v6
110110

111111
- name: Rename win-x64 and win-x86 artifacts
112112
run: |

0 commit comments

Comments
 (0)