-
Notifications
You must be signed in to change notification settings - Fork 1
build(deps): bump actions/setup-dotnet from 4.3.1 to 5.4.0 #91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -52,7 +52,7 @@ jobs: | |
| uses: actions/checkout@v7 | ||
|
|
||
| - name: 🗄️ Setup .NET | ||
| uses: actions/setup-dotnet@v5 | ||
| uses: actions/setup-dotnet@v5.4.0 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 📝 Info: Mixed pinning strategies across workflow files The repository uses two different pinning strategies for the same action: SHA-pinned commits in Was this helpful? React with 👍 or 👎 to provide feedback. |
||
| with: | ||
| dotnet-version: "10.0.x" | ||
|
|
||
|
|
@@ -91,7 +91,7 @@ jobs: | |
| uses: NuGet/setup-nuget@v4 | ||
|
|
||
| - name: 🗄️ Setup .NET | ||
| uses: actions/setup-dotnet@v5 | ||
| uses: actions/setup-dotnet@v5.4.0 | ||
| with: | ||
| dotnet-version: "10.0.x" | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📝 Info: Floating major tag narrowed to pinned minor version
In
ci-build-test.yml,publish-all.yml, andsecurity-scan.yml, the reference was changed fromactions/setup-dotnet@v5(a floating major tag that automatically picks up new minor/patch releases like v5.5.0, v5.6.0, etc.) toactions/setup-dotnet@v5.4.0(pinned to exactly v5.4.0). This means these workflows will no longer receive automatic minor or patch updates to the action. This is likely intentional for reproducibility, but it does mean future action improvements or fixes won't be picked up without another explicit version bump PR.Was this helpful? React with 👍 or 👎 to provide feedback.