From 9a740d080c20f3dde43d955a91244f488e4aee56 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 15:03:24 +0000 Subject: [PATCH] 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](https://github.com/actions/checkout/compare/v4...v5) Updates `actions/setup-dotnet` from 4 to 5 - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](https://github.com/actions/setup-dotnet/compare/v4...v5) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) Updates `actions/download-artifact` from 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/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] --- .github/workflows/build.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0f1b11f..d6d1e26 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,14 +35,14 @@ jobs: architecture: ARM64 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 submodules: recursive - name: Setup .NET if: matrix.os == 'windows-latest' - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: dotnet-version: 8.0.x @@ -52,7 +52,7 @@ jobs: shell: bash - name: Upload source package - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: matrix.os == 'windows-latest' && matrix.architecture == 'x64' with: name: win-x64-source @@ -80,21 +80,21 @@ jobs: shell: bash - name: Upload win-${{ matrix.architecture }} ${{ github.event.inputs.ReleaseType || 'Release' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: matrix.os == 'windows-latest' with: name: win-${{ matrix.architecture }} path: cimgui\build\${{ matrix.architecture }}\${{ github.event.inputs.ReleaseType || 'Release' }}\* - name: Upload ${{ matrix.os }} ${{ github.event.inputs.ReleaseType || 'Release' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' with: name: ${{ matrix.os }}-x64 path: cimgui/build/${{ github.event.inputs.ReleaseType || 'Release' }}/* - name: Upload Json Files - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: matrix.os == 'windows-latest' && matrix.architecture == 'x64' with: name: JsonFiles @@ -106,7 +106,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/') steps: - name: Download Artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 - name: Rename win-x64 and win-x86 artifacts run: |