Update libraries - #100
Merged
Merged
Conversation
Bumps [super-linter/super-linter](https://github.com/super-linter/super-linter) from 7.2.0 to 8.3.1. - [Release notes](https://github.com/super-linter/super-linter/releases) - [Changelog](https://github.com/super-linter/super-linter/blob/main/CHANGELOG.md) - [Commits](super-linter/super-linter@v7.2.0...v8.3.1) --- updated-dependencies: - dependency-name: super-linter/super-linter dependency-version: 8.3.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
…t-github/workflows/super-linter/super-linter-8.3.1 Bump super-linter/super-linter from 7.2.0 to 8.3.1 in /.github/workflows
Updated Microsoft.AspNetCore.OpenApi, Swashbuckle.AspNetCore.SwaggerUI, and TinyHelpers.AspNetCore to latest patch versions in project files. Removed .github/copilot-instructions.md from solution items. Fixed typo in Obsolete attribute message in RouteHandlerBuilderExtensions.cs.
There was a problem hiding this comment.
Pull request overview
This PR performs routine maintenance by updating several NuGet dependencies and the GitHub linter action, plus a small message typo fix, keeping the MinimalHelpers repo aligned with upstream patches.
Changes:
- Bumped
Microsoft.AspNetCore.OpenApiversions across target frameworks and the sample project. - Updated sample dependencies (
Swashbuckle.AspNetCore.SwaggerUI,TinyHelpers.AspNetCore) and upgradedsuper-linter. - Fixed a typo in an
Obsoleteattribute message and removed.github/copilot-instructions.mdfrom solution items.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
src/MinimalHelpers.OpenApi/RouteHandlerBuilderExtensions.cs |
Fixes typo in Obsolete attribute message. |
src/MinimalHelpers.OpenApi/MinimalHelpers.OpenApi.csproj |
Updates Microsoft.AspNetCore.OpenApi package versions per TFM. |
samples/MinimalSample/MinimalSample.csproj |
Updates OpenAPI/SwaggerUI/TinyHelpers package versions in the sample. |
MinimalHelpers.slnx |
Removes Copilot instructions file from Solution Items list. |
.github/workflows/linter.yml |
Upgrades super-linter action version used by CI linting. |
| ################################ | ||
| - name: Lint Code Base | ||
| uses: super-linter/super-linter@v7.2.0 | ||
| uses: super-linter/super-linter@v8.3.1 |
There was a problem hiding this comment.
GitHub Actions are referenced by mutable tags (e.g., super-linter/super-linter@v8.3.1). For supply-chain security and reproducible builds, pin this action to a commit SHA (optionally keeping the tag in a comment) instead of a version tag.
Suggested change
| uses: super-linter/super-linter@v8.3.1 | |
| uses: super-linter/super-linter@<COMMIT-SHA-FOR-v8.3.1> # v8.3.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request primarily updates package dependencies to their latest versions and makes minor maintenance improvements. The updates ensure the project remains current with upstream changes and resolves a small typo in an attribute message.
Dependency updates:
Microsoft.AspNetCore.OpenApiandSwashbuckle.AspNetCore.SwaggerUIpackage references to their latest patch versions insamples/MinimalSample/MinimalSample.csprojandsrc/MinimalHelpers.OpenApi/MinimalHelpers.OpenApi.csprojto improve compatibility and include the latest fixes. [1] [2]TinyHelpers.AspNetCorepackage reference to the latest version insamples/MinimalSample/MinimalSample.csprojfor improved support and bug fixes.Build and tooling improvements:
super-linterGitHub Action from v7.2.0 to v8.3.1 in.github/workflows/linter.ymlto use the latest linting rules and features.Code and documentation cleanup:
Obsoleteattribute message inRouteHandlerBuilderExtensions.cs("AspNetCoore" → "AspNetCore")..github/copilot-instructions.mdfrom the solution items inMinimalHelpers.slnxfor better project organization.