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
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
runs-on: ${{ matrix.config.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup .NET
Expand All @@ -59,7 +59,7 @@ jobs:
needs: build
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Download artifacts
Expand All @@ -82,7 +82,7 @@ jobs:
needs: macos_codesign
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Download artifacts
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
statuses: write
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Lint Code Base
Expand All @@ -53,7 +53,7 @@ jobs:
with:
dotnet-version: '8.0.x'
- name: Check out code into the project directory
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Run unit tests
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
with:
dotnet-version: '8.0.x'
- name: Check out code into the project directory
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Run unit tests
Expand All @@ -121,7 +121,7 @@ jobs:
with:
dotnet-version: '8.0.x'
- name: Check out code into the project directory
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Run unit tests
Expand All @@ -141,7 +141,7 @@ jobs:
needs: test-linux
steps:
- name: Check out code into the project directory
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: actions/download-artifact@v4
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
needs: [test-linux, test-linux-arm]
steps:
- name: Check out code into the project directory
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: actions/download-artifact@v4
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:
needs: test-windows
steps:
- name: Check out code into the project directory
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: actions/download-artifact@v4
Expand Down Expand Up @@ -282,7 +282,7 @@ jobs:
needs: test-linux
steps:
- name: Check out code into the project directory
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: actions/download-artifact@v4
Expand Down
Loading