chore(deps): bump actions/configure-pages from 5 to 6#36
chore(deps): bump actions/configure-pages from 5 to 6#36dependabot[bot] wants to merge 1 commit into
Conversation
Bumps [actions/configure-pages](https://github.com/actions/configure-pages) from 5 to 6. - [Release notes](https://github.com/actions/configure-pages/releases) - [Commits](actions/configure-pages@v5...v6) --- updated-dependencies: - dependency-name: actions/configure-pages dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
📝 WalkthroughWalkthroughThe deploy workflow's GitHub Pages configuration step is updated to use ChangesDeploy Workflow
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Suggested reviewers
Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In @.github/workflows/deploy.yml:
- Line 45: Replace the mutable tag "actions/configure-pages@v6" with its exact
resolved commit SHA to pin the action for supply-chain integrity; locate the
step referencing uses: actions/configure-pages@v6 in the deploy workflow and
update the uses value to the specific commit SHA (e.g.,
actions/configure-pages@<commit-sha>) you obtain from the official GitHub
Actions release or by resolving the v6 tag, ensuring the workflow now references
the immutable commit ID.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro Plus
Run ID: 02ffdaf4-c153-48eb-a2df-ede3ea655c4b
📒 Files selected for processing (1)
.github/workflows/deploy.yml
|
|
||
| - name: Setup Pages | ||
| uses: actions/configure-pages@v5 | ||
| uses: actions/configure-pages@v6 |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
set -euo pipefail
ref_json="$(gh api repos/actions/configure-pages/git/ref/tags/v6)"
type="$(jq -r '.object.type' <<<"$ref_json")"
sha="$(jq -r '.object.sha' <<<"$ref_json")"
if [ "$type" = "tag" ]; then
# annotated tag -> dereference to commit
sha="$(gh api repos/actions/configure-pages/git/tags/"$sha" --jq '.object.sha')"
fi
echo "Resolved commit SHA for actions/configure-pages@v6:"
echo "$sha"Repository: OpenDevFlow/md-latex
Length of output: 157
Pin actions/configure-pages to an exact commit SHA (Line 45)
actions/configure-pages@v6 is mutable; pin the step to the resolved v6 commit SHA for supply-chain integrity and reproducible deployments.
Suggested change
- uses: actions/configure-pages@v6
+ uses: actions/configure-pages@45bfe0192ca1faeb007ade9deae92b16b8254a0d # v6🧰 Tools
🪛 zizmor (1.25.2)
[error] 45-45: unpinned action reference (unpinned-uses): action is not pinned to a hash (required by blanket policy)
(unpinned-uses)
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In @.github/workflows/deploy.yml at line 45, Replace the mutable tag
"actions/configure-pages@v6" with its exact resolved commit SHA to pin the
action for supply-chain integrity; locate the step referencing uses:
actions/configure-pages@v6 in the deploy workflow and update the uses value to
the specific commit SHA (e.g., actions/configure-pages@<commit-sha>) you obtain
from the official GitHub Actions release or by resolving the v6 tag, ensuring
the workflow now references the immutable commit ID.
Bumps actions/configure-pages from 5 to 6.
Release notes
Sourced from actions/configure-pages's releases.
Commits
45bfe01Merge pull request #186 from salmanmkc/node24d8770c2Update Node version from 20 to 24 in action.ymlcb8a1a3upgrade to node 24d560657Merge pull request #165 from actions/Jcambass-patch-135e0ac4Upgrade IA Publish1dfbcbfMerge pull request #163 from actions/Jcambass-patch-12f4f988Add workflow file for publishing releases to immutable action package0d7570cMerge pull request #162 from actions/pin-draft-release-verssion3ea1966pin draft release versionaabcbc4Merge pull request #160 from actions/dependabot/npm_and_yarn/espree-10.1.0Dependabot 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Summary by CodeRabbit