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
4 changes: 2 additions & 2 deletions .github/workflows/auto-pr-from-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
git config --global user.email "github-actions[bot]@users.noreply.github.com"

- name: 🗄️ Setup .NET
uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1
uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68
with:
dotnet-version: "10.0.x"

Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:
git config --global user.email "github-actions[bot]@users.noreply.github.com"

- name: �️ Setup .NET
uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1
uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68
with:
dotnet-version: "10.0.x"

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
fetch-depth: 0

- name: Setup .NET
uses: actions/setup-dotnet@v5.4.0
uses: actions/setup-dotnet@v6.0.0

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 Info: Mixed pinning styles for setup-dotnet across workflows

The bump uses two different pinning styles: SHA-pinned (a98b56852c35b8e3190ac28c8c2271da59106c68) in auto-pr-from-main.yml and code-quality.yml, versus mutable version tags (v6.0.0) in ci-build-test.yml, publish-all.yml, and security-scan.yml. This inconsistency is pre-existing (the same files were SHA vs tag pinned before this PR) and the SHA correctly corresponds to the v6.0.0 release per the PR description, so it is not a bug. Worth noting only for future hardening consistency.

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

with:
dotnet-version: ${{ env.DOTNET_VERSION }}

Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
fetch-depth: 0

- name: Setup .NET
uses: actions/setup-dotnet@v5.4.0
uses: actions/setup-dotnet@v6.0.0
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
uses: actions/checkout@v7.0.0

- name: 🗄️ Setup .NET
uses: actions/setup-dotnet@v5.4.0
uses: actions/setup-dotnet@v6.0.0
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

Expand All @@ -205,7 +205,7 @@ jobs:
uses: actions/checkout@v7.0.0

- name: 🗄️ Setup .NET
uses: actions/setup-dotnet@v5.4.0
uses: actions/setup-dotnet@v6.0.0
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
uses: NuGet/setup-nuget@fd55a6f3b34392fa83fde1454582407d8c714123

- name: 🗄️ Setup .NET
uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1
uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68
with:
dotnet-version: "10.0.x"

Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0

- name: 🗄️ Setup .NET
uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1
uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68
with:
dotnet-version: "10.0.x"

Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0

- name: 🗄️ Setup .NET
uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1
uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68
with:
dotnet-version: "10.0.x"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
fetch-depth: 0

- name: 🗄️ Setup .NET
uses: actions/setup-dotnet@v5.4.0
uses: actions/setup-dotnet@v6.0.0
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
uses: actions/checkout@v7.0.0

- name: ️ Setup .NET
uses: actions/setup-dotnet@v5.4.0
uses: actions/setup-dotnet@v6.0.0
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
uses: actions/checkout@v7.0.0

- name: 🗄️ Setup .NET
uses: actions/setup-dotnet@v5.4.0
uses: actions/setup-dotnet@v6.0.0
with:
dotnet-version: "10.0.x"

Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
uses: NuGet/setup-nuget@v4

- name: 🗄️ Setup .NET
uses: actions/setup-dotnet@v5.4.0
uses: actions/setup-dotnet@v6.0.0
with:
dotnet-version: "10.0.x"

Expand Down
Loading