-
Notifications
You must be signed in to change notification settings - Fork 1
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
build(deps): bump gittools/actions to v3.1.11 #248
base: main
Are you sure you want to change the base?
Conversation
Bumps [gittools/actions](https://github.com/gittools/actions) from 3.0.0 to 3.1.11. - [Release notes](https://github.com/gittools/actions/releases) - [Changelog](https://github.com/GitTools/actions/blob/main/GitReleaseManager.yml) - [Commits](GitTools/actions@v3.0.0...v3.1.11) --- updated-dependencies: - dependency-name: gittools/actions dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
The following labels could not be found: |
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
uses: gittools/actions/gitversion/setup@v3.1.11 | ||
with: | ||
versionSpec: "5.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.
Suggestion: Verify that the new version v3.1.11
of gittools/actions/gitversion
is compatible with the rest of the workflow, especially with the versionSpec: "5.x"
parameter, to avoid potential runtime errors. [general, importance: 7]
uses: gittools/actions/gitversion/setup@v3.1.11 | |
with: | |
versionSpec: "5.x" | |
uses: gittools/actions/gitversion/setup@v3.1.11 | |
with: | |
versionSpec: "5.x" # Ensure compatibility with v3.1.11 |
with: | ||
versionSpec: "5.x" | ||
- name: Version with GitVersion # https://github.com/marketplace/actions/use-actions | ||
id: gitversion | ||
uses: gittools/actions/gitversion/execute@v3.0.0 | ||
uses: gittools/actions/gitversion/execute@v3.1.11 |
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.
Suggestion: Confirm that the updated gittools/actions/gitversion
version v3.1.11
does not introduce breaking changes or deprecations that could affect the execute
step in the workflow. [general, importance: 7]
uses: gittools/actions/gitversion/execute@v3.1.11 | |
uses: gittools/actions/gitversion/execute@v3.1.11 # Ensure no breaking changes in v3.1.11 |
User description
Bumps gittools/actions from 3.0.0 to 3.1.11.
Release notes
Sourced from gittools/actions's releases.
... (truncated)
Commits
b4372b9
Merge pull request #1468 from arturcic/feature/action-testc5fff82
Refactor workflows to add and utilize trigger-action-test.c60be73
omit gittools/actions/gitversion/* actions from dependabot223f843
update examples version to 3.1.105e04cc6
Merge pull request #1466 from arturcic/feature/vsix-asset3e78d09
include vsix asset when releasinge71fc8b
Merge pull request #1464 from arturcic/feature/prerelease10aa8dd
Add separate workflow for prerelease builds3b2eb47
Merge pull request #1463 from GitTools/dependabot/npm_and_yarn/vite-cc1da1a19beb0d471
(npm): Bump the vite group with 3 updatesDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)PR Type
Dependencies, Build
Description
Updated
gittools/actions
dependency from v3.0.0 to v3.1.11.Modified
.github/workflows/SonarCloud.yml
to use updated GitVersion actions.Modified
.github/workflows/release.yml
to use updated GitVersion actions.Changes walkthrough 📝
SonarCloud.yml
Update GitVersion actions in SonarCloud workflow
.github/workflows/SonarCloud.yml
gittools/actions/gitversion/setup
to v3.1.11.gittools/actions/gitversion/execute
to v3.1.11.release.yml
Update GitVersion actions in release workflow
.github/workflows/release.yml
gittools/actions/gitversion/setup
to v3.1.11.gittools/actions/gitversion/execute
to v3.1.11.