-
Notifications
You must be signed in to change notification settings - Fork 1
build(deps): bump actions/checkout from 4.3.1 to 7.0.0 #92
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 |
|---|---|---|
|
|
@@ -22,7 +22,7 @@ jobs: | |
|
|
||
| steps: | ||
| - name: Checkout Code | ||
| uses: actions/checkout@v7 | ||
| uses: actions/checkout@v7.0.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: Pinning to v7.0.0 instead of v7 disables automatic patch updates Several workflow files previously used Was this helpful? React with 👍 or 👎 to provide feedback. |
||
| with: | ||
| fetch-depth: 0 | ||
|
|
||
|
|
@@ -105,7 +105,7 @@ jobs: | |
|
|
||
| steps: | ||
| - name: Checkout Code | ||
| uses: actions/checkout@v7 | ||
| uses: actions/checkout@v7.0.0 | ||
| with: | ||
| fetch-depth: 0 | ||
|
|
||
|
|
@@ -154,7 +154,7 @@ jobs: | |
|
|
||
| steps: | ||
| - name: 📥 Checkout Code | ||
| uses: actions/checkout@v7 | ||
| uses: actions/checkout@v7.0.0 | ||
|
|
||
| - name: 🔍 Security Scan (QRCoder.Core) | ||
| run: | | ||
|
|
@@ -175,7 +175,7 @@ jobs: | |
|
|
||
| steps: | ||
| - name: 📥 Checkout Code | ||
| uses: actions/checkout@v7 | ||
| uses: actions/checkout@v7.0.0 | ||
|
|
||
| - name: 🗄️ Setup .NET | ||
| uses: actions/setup-dotnet@v5 | ||
|
|
@@ -202,7 +202,7 @@ jobs: | |
|
|
||
| steps: | ||
| - name: 📥 Checkout Code | ||
| uses: actions/checkout@v7 | ||
| uses: actions/checkout@v7.0.0 | ||
|
|
||
| - name: 🗄️ Setup .NET | ||
| uses: actions/setup-dotnet@v5 | ||
|
|
@@ -277,7 +277,7 @@ jobs: | |
|
|
||
| steps: | ||
| - name: 📥 Checkout Code | ||
| uses: actions/checkout@v7 | ||
| uses: actions/checkout@v7.0.0 | ||
| with: | ||
| token: ${{ secrets.GITHUB_TOKEN }} | ||
| fetch-depth: 0 | ||
|
|
||
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.
🔍 Two different referencing styles for the same action across workflows
After this PR,
auto-pr-from-main.ymlandcode-quality.ymlreferenceactions/checkoutby commit SHA (@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0), while all other workflow files use the tag@v7.0.0. If the SHA does not correspond to the v7.0.0 tag, different workflows would silently use different checkout versions. This inconsistency was already present before the PR (some files used SHA34e114876b..., others used@v7), so it's pre-existing. Consider standardizing on one style across all workflows for maintainability.Was this helpful? React with 👍 or 👎 to provide feedback.