-
Notifications
You must be signed in to change notification settings - Fork 41
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
GotW: Dependabot Updates #1292
GotW: Dependabot Updates #1292
Conversation
@@ -14,7 +14,7 @@ jobs: | |||
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | |||
|
|||
- name: Setup mdBook | |||
uses: peaceiris/actions-mdbook@v1 | |||
uses: peaceiris/actions-mdbook@v2 |
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.
Please check with Sergey if his documentation doesn't blow up https://smartcontractkit.github.io/chainlink-testing-framework/lib.html
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.
This looks like they're just updating to the latest node version, so it should be fine, but I'll check.
@@ -29,7 +29,7 @@ jobs: | |||
mdbook build | |||
|
|||
- name: Deploy to GitHub Pages | |||
uses: peaceiris/actions-gh-pages@v3 | |||
uses: peaceiris/actions-gh-pages@v4 |
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.
Same as above
…framework into dependabotUpdates
Quality Gate passedIssues Measures |
Below is a summarization created by an LLM (gpt-4-0125-preview). Be mindful of hallucinations and verify accuracy.
Why
The changes in various
go.mod
andgo.sum
files across the project update dependencies for Kubernetes API, client-go, and apimachinery tov0.31.2
fromv0.31.1
, ensuring compatibility with the latest Kubernetes features and bug fixes. The updates in.github/workflows
files fromv3
tov4
foractions-gh-pages
and fromv1
tov2
foractions-mdbook
, as well as the update in theactions/cache
fromv3
tov4
inframework.yml
, enhance the CI/CD pipeline by utilizing the latest versions of these actions, potentially offering improvements in performance, security, and available features.What
.github/workflows/docs.yml
peaceiris/actions-mdbook
fromv1
tov2
.peaceiris/actions-gh-pages
fromv3
tov4
..github/workflows/framework.yml
actions/cache
fromv3
tov4
.havoc/go.mod
,k8s-test-runner/go.mod
,lib/go.mod
,wasp/go.mod
k8s.io/api
,k8s.io/apimachinery
,k8s.io/client-go
) fromv0.31.1
tov0.31.2
.go.sum
files updated to reflect changes ingo.mod
files.