diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ebf4fea..5643770 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,10 +23,10 @@ jobs: timeout-minutes: 20 steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Setup .NET - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v6 with: dotnet-version: "8.0.x" diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 344a076..b8e461c 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -28,7 +28,7 @@ jobs: language: [csharp, actions] steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Initialize CodeQL uses: github/codeql-action/init@v3 diff --git a/.github/workflows/pullfrog.yml b/.github/workflows/pullfrog.yml index 848c929..e6d42c8 100644 --- a/.github/workflows/pullfrog.yml +++ b/.github/workflows/pullfrog.yml @@ -22,13 +22,13 @@ jobs: contents: read steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 1 # Console Mode: .NET 8 so the agent can run the unit tests (tests/ConsoleMode.Tests # targets plain net8.0). The WinUI app itself only builds on Windows: the CI workflow does that. - name: Setup .NET - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v6 with: dotnet-version: "8.0.x" - name: Run agent diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 619b1dc..472ed82 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,10 +21,10 @@ jobs: runs-on: windows-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Setup .NET - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v6 with: dotnet-version: "8.0.x" @@ -92,7 +92,7 @@ jobs: run: .\build\Publish-ConsoleMode.ps1 -Runtime x64 -Target All -Version "${{ steps.version.outputs.version }}" - name: Upload artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ConsoleMode-${{ steps.version.outputs.version }} path: | @@ -102,7 +102,7 @@ jobs: - name: Publish GitHub release if: github.event_name == 'push' - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: name: Console Mode ${{ steps.version.outputs.version }} prerelease: ${{ steps.version.outputs.prerelease }}