Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Setup .NET SDK v9.0.x
uses: actions/setup-dotnet@v5
with:
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

# Compute vcpkg triplet and root
- name: Compute vcpkg triplet and root
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
version: ${{ steps.get-version.outputs.version }}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Download all artifacts
uses: actions/download-artifact@v6
with:
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
needs: build-nuget
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Download NuGet artifact
uses: actions/download-artifact@v6
with:
Expand Down Expand Up @@ -290,7 +290,7 @@ jobs:
needs: build-nuget
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Download NuGet artifact
uses: actions/download-artifact@v6
Expand Down Expand Up @@ -340,7 +340,7 @@ jobs:
needs: [build-nuget,all-required-checks-done]
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Check version
id: check-version
shell: pwsh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Initialize CodeQL
uses: github/codeql-action/init@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup Python
uses: actions/setup-python@v6
Expand Down
Loading