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 b51d748..c8e842a 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" @@ -97,7 +97,7 @@ jobs: - name: Upload unsigned build for signing id: unsigned if: github.event_name == 'push' && vars.SIGNPATH_ORGANIZATION_ID != '' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: unsigned-${{ steps.version.outputs.version }} path: | @@ -107,7 +107,7 @@ jobs: - name: Sign with SignPath if: github.event_name == 'push' && vars.SIGNPATH_ORGANIZATION_ID != '' - uses: signpath/github-action-submit-signing-request@v2 + uses: signpath/github-action-submit-signing-request@v3 with: api-token: ${{ secrets.SIGNPATH_API_TOKEN }} organization-id: ${{ vars.SIGNPATH_ORGANIZATION_ID }} @@ -130,7 +130,7 @@ jobs: } - name: Upload artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ConsoleMode-${{ steps.version.outputs.version }} path: | @@ -140,7 +140,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 }}