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
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: '9.0.x'

- name: Cache NuGet packages
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.nuget/packages
key: nuget-${{ runner.os }}-${{ hashFiles('**/*.csproj') }}
Expand Down Expand Up @@ -89,15 +89,15 @@ jobs:
run: Set-ItemProperty 'HKLM:\System\CurrentControlSet\Control\FileSystem' -Name 'LongPathsEnabled' -value 1

- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: '9.0.x'

- name: Cache NuGet packages
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.nuget/packages
key: nuget-${{ runner.os }}-${{ hashFiles('**/*.csproj') }}
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
|| github.event.inputs.force_nightly == 'true'
steps:
- name: Checkout external files folder
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
sparse-checkout: |
external
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wiki-drawio-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

- name: Checkout Wiki Repository
if: steps.wiki-check.outputs.exists == 'true'
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: ${{ github.repository }}-docs
token: ${{ secrets.DOCS_DISPATCH_TOKEN }}
Expand Down