-
Notifications
You must be signed in to change notification settings - Fork 0
ci: update workflow dependencies #10
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 |
|---|---|---|
|
|
@@ -27,16 +27,16 @@ jobs: | |
| url: ${{ steps.deployment.outputs.page_url }} | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/checkout@v7 | ||
|
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.
When this workflow is dispatched or triggered by a docs change, Useful? React with 👍 / 👎. |
||
|
|
||
| - name: Configure Pages | ||
| uses: actions/configure-pages@v5 | ||
| uses: actions/configure-pages@v6 | ||
|
|
||
| - name: Upload docs/ artifact | ||
| uses: actions/upload-pages-artifact@v3 | ||
| uses: actions/upload-pages-artifact@v5 | ||
| with: | ||
| path: docs | ||
|
|
||
| - name: Deploy to GitHub Pages | ||
| id: deployment | ||
| uses: actions/deploy-pages@v4 | ||
| uses: actions/deploy-pages@v5 | ||
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.
On every push or pull request, all three jobs now begin with
actions/checkout@v7, but that major ref is not published, so GitHub Actions cannot resolve the action and each job stops before checking out the repository. The other newly selected CI majors (setup-python@v7,setup-node@v7,setup-buildx-action@v4, andbuild-push-action@v7) likewise need to be replaced with actual published stable tags.Useful? React with 👍 / 👎.