From 94a37909b0142ef95a734804dc90de400b066e2d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 15:17:39 +0000 Subject: [PATCH] Bump the github-action-deps group across 1 directory with 5 updates Bumps the github-action-deps group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/setup-dotnet](https://github.com/actions/setup-dotnet) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `8` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `2` | `3` | 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](https://github.com/actions/checkout/compare/v4...v6) 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 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) Updates `actions/download-artifact` from 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v8) Updates `softprops/action-gh-release` from 2 to 3 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' 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: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-deps - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-deps - dependency-name: softprops/action-gh-release dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-deps ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0f1b11f..d8b526b 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@v6 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@v7 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@v7 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@v7 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@v7 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@v8 - name: Rename win-x64 and win-x86 artifacts run: | @@ -115,7 +115,7 @@ jobs: mv win-ARM64/cimgui.dll win-ARM64/cimgui.win-arm64.dll - name: Release - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: files: | win-x64/cimgui.win-x64.dll