-
Notifications
You must be signed in to change notification settings - Fork 147
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
chore(deps): update jamesives/github-pages-deploy-action action to v4.6.2 #3252
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 |
---|---|---|
|
@@ -38,7 +38,7 @@ jobs: | |
debug: true | ||
directory: . | ||
badge: target/loc-badge.svg | ||
- uses: JamesIves/github-pages-deploy-action@v4.6.1 | ||
- uses: JamesIves/github-pages-deploy-action@v4.6.2 | ||
with: | ||
branch: gh-pages | ||
folder: target | ||
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. The diff you provided indicates a single change in the code. The action However, any potential irregularities or issues would depend on whether there are any breaking changes or known issues in that newer version ( It's recommended to check the release notes or changelog for the specific version |
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,7 +48,7 @@ jobs: | |
factbase: objectionary.fb | ||
output: pages | ||
logo: https://www.objectionary.com/cactus.svg | ||
- uses: JamesIves/github-pages-deploy-action@v4.6.1 | ||
- uses: JamesIves/github-pages-deploy-action@v4.6.2 | ||
with: | ||
branch: gh-pages | ||
folder: pages | ||
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. The code diff you provided is showing a change in the version of the From purely staring at this short diff, there doesn't seem to be any problem or irregularity. But it's critical to note that real-world impact of such changes often depend on the specific changes between the two versions of the action being used. Issues might arise if version |
||
|
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.
The code diff indicates that the version of the
JamesIves/github-pages-deploy-action
has been updated fromv4.6.1
tov4.6.2
.There are no syntactic errors or irregularities in this diff, as long as
v4.6.2
is a valid and existent version ofJamesIves/github-pages-deploy-action
on GitHub. Additionally, the underlying assumption is that this newer version of the action is fully compatible with your existing workflow and additional setup (i.e., it does not introduce any breaking changes), which you should verify based on the changelog or release notes of the action.