Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/build-test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ jobs:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: $env:GITHUB_CONTEXT
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup .NET
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.x
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ jobs:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: $env:GITHUB_CONTEXT
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup .NET
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.x
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/dotnet-format-apply-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: $env:GITHUB_CONTEXT
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.WORKFLOW_HEAD_SHA }}
- name: Download dotnet format workflow info artifact
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
WORKFLOW_URL: ${{ needs.on-push-check.outputs.workflow-url }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.WORKFLOW_HEAD_SHA }}
- name: Prepare commit info
Expand Down Expand Up @@ -223,7 +223,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.WORKFLOW_HEAD_SHA }}
# The token gets saved and further git commands will use this token. See https://github.com/marketplace/actions/checkout#usage.
Expand Down Expand Up @@ -287,7 +287,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.WORKFLOW_HEAD_SHA }}
- name: Set status check data
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dotnet-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ jobs:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: $env:GITHUB_CONTEXT
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup .NET
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.x
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/markdown-link-check-handle-result.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
create-issue: ${{ steps.needs-issue-check.outputs.create-issue }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.WORKFLOW_HEAD_SHA }}
- name: Check for open markdown link check issues
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
WORKFLOW_URL: ${{ needs.workflow-info.outputs.workflow-url }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ env.WORKFLOW_HEAD_SHA }}
- name: Render issue body template
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/markdown-link-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: $env:GITHUB_CONTEXT
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Markdown link check
id: mlc-push
uses: gaurav-nelson/github-action-markdown-link-check@1.0.17
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nuget-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: $env:GITHUB_CONTEXT
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Get release info run id from PR
id: release-info
if: github.event_name == 'pull_request'
Expand Down Expand Up @@ -289,7 +289,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup NuGet release flow info
id: set-nuget-release-flow-info
run: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/nuget-release-flow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: $env:GITHUB_CONTEXT
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Get release info run id
id: release-info
env:
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
$headBranch = '${{ github.event.workflow_run.head_branch }}'
Write-Output "::notice::This workflows was triggered by the completion of '$workflowRunName' with run id '$workflowRunId' on the branch '$headBranch'."
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set NuGet release flow info artifact source
id: nuget-release-flow-artifact
run: |
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
STEP_OUTPUT: ${{ toJSON(needs.release-flow-args.outputs) }}
run: $env:STEP_OUTPUT
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Find NuGet release flow comment
uses: peter-evans/find-comment@v3
id: find-nuget-release-flow-comment
Expand Down Expand Up @@ -342,7 +342,7 @@ jobs:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: $env:GITHUB_CONTEXT
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Render close issue comment template
uses: yukitsune/template-cli@v0.1.1
with:
Expand Down Expand Up @@ -382,7 +382,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Download GitHub release info artifact
uses: dawidd6/action-download-artifact@v11
with:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/nuget-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
custom-release-notes: ${{ steps.parse-issue.outputs.custom-release-notes }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- uses: edumserrano/github-issue-forms-parser@v1
id: issue-parser
with:
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
RELEASE_INFO_ARTIFACT_FILEPATH: ${{github.workspace}}/nuget-release-info.md
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Save release notes to file
run: |
$releaseNotes = @'
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: $env:GITHUB_CONTEXT
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Check for open dotnet format PRs
id: open-pr-check
env:
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:
pr-number: ${{ steps.create-pr.outputs.pr-number }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup NuGet release PR data
id: nuget-release-pr-data
run: |
Expand Down Expand Up @@ -375,7 +375,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set PR auto merge
env:
GITHUB_TOKEN: ${{ secrets.PUBLIC_REPO_SCOPE_GH_TOKEN }}
Expand All @@ -391,7 +391,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup NuGet release flow info
id: set-nuget-release-flow-info
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: $env:GITHUB_CONTEXT
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.event.workflow_run.head_sha }}
- name: Approve and merge dependabot PR
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload-coverage-to-codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
# the source code to be able to process the coverage file and generate coverage reports.
# Otherwise the upload step works but the processing of the coverage files fails with the error: "unusable report".
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.event.workflow_run.head_sha }}
- name: Download test coverage file
Expand Down
Loading