Skip to content

Bump the github-actions group with 2 updates - #511

Merged
Marius Storhaug (MariusStorhaug) merged 7 commits into
mainfrom
dependabot/github_actions/github-actions-25c580fd63
Aug 15, 2026
Merged

Bump the github-actions group with 2 updates#511
Marius Storhaug (MariusStorhaug) merged 7 commits into
mainfrom
dependabot/github_actions/github-actions-25c580fd63

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 10, 2026

Copy link
Copy Markdown
Contributor

Bumps the github-actions group with 2 updates: actions/checkout and actions/setup-python.

Updates actions/checkout from 7.0.0 to 7.0.1

Release notes

Sourced from actions/checkout's releases.

v7.0.1

What's Changed

Full Changelog: actions/checkout@v7...v7.0.1

Changelog

Sourced from actions/checkout's changelog.

Changelog

v7.0.1

v7.0.0

v6.0.3

v6.0.2

v6.0.1

v6.0.0

v5.0.1

v5.0.0

v4.3.1

v4.3.0

v4.2.2

v4.2.1

... (truncated)

Commits

Updates actions/setup-python from 6.3.0 to 7.0.0

Release notes

Sourced from actions/setup-python's releases.

v7.0.0

What's Changed

Enhancements

Bug Fix

Dependency Upgrade

New Contributors

Full Changelog: actions/setup-python@v6...v7.0.0

Commits

Dependabot 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-python](https://github.com/actions/setup-python).


Updates `actions/checkout` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v7...3d3c42e)

Updates `actions/setup-python` from 6.3.0 to 7.0.0
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@ece7cb0...5fda3b9)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
- dependency-name: actions/setup-python
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code Major labels Aug 10, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner August 10, 2026 11:15
@dependabot dependabot Bot added Major dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Aug 10, 2026
@github-actions

github-actions Bot commented Aug 10, 2026

Copy link
Copy Markdown

Super-linter summary

Language Validation result
CHECKOV Pass ✅
CSS Pass ✅
CSS_PRETTIER Pass ✅
GITHUB_ACTIONS Pass ✅
GITHUB_ACTIONS_ZIZMOR Pass ✅
GITLEAKS Pass ✅
GIT_MERGE_CONFLICT_MARKERS Pass ✅
HTML Pass ✅
JAVASCRIPT_ES Pass ✅
JAVASCRIPT_PRETTIER Pass ✅
MARKDOWN Pass ✅
NATURAL_LANGUAGE Pass ✅
POWERSHELL Pass ✅
PRE_COMMIT Pass ✅
SPELL_CODESPELL Pass ✅
TRIVY Pass ✅
YAML Pass ✅

All files and directories linted successfully

For more information, see the GitHub Actions workflow run

Powered by Super-linter

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Marius Storhaug (MariusStorhaug) added a commit to MSXOrg/docs that referenced this pull request Aug 15, 2026
Repositories can now synchronize GitHub Action SHA pins with the latest
stable releases through a reusable, dependency-free PowerShell utility.
The GitHub Actions standard explains how it complements Dependabot for
audits and deliberate manual synchronization.

## New: Action-pin synchronization

Run the utility against any repository to resolve each supported action
release tag to its immutable commit SHA, including composite-action
subpaths and annotated tags. Use `-WhatIf` to review proposed pin and
release-comment changes without writing files.

---
<details>
<summary>Technical details</summary>

- `Update-GitHubActionPin.ps1` scans `.github` YAML recursively,
preserves UTF-8 BOM and line endings, honors `ShouldProcess`, avoids
rewriting current pins, and uses `GITHUB_TOKEN` or `GH_TOKEN` when
available.
- Focused Pester fixtures cover annotated tags, composite subpaths,
omitted comments, local and Docker references, BOM/CRLF preservation,
`-WhatIf`, no-op pins, and unresolved releases.
- Implementation plan progress: updater, focused tests, live `-WhatIf`
API smoke test, and GitHub Actions standard guidance are complete.
- Standards and framework alignment:

| Changed surface | Standards checked | Framework docs checked | Result
|
| --- | --- | --- | --- |
| `.github/scripts/**` | PowerShell, GitHub Actions, Security | None (no
framework-specific docs) | Aligned |
| `tests/**` | Testing, PowerShell Testing | None (no framework-specific
docs) | Aligned |
| `src/docs/Coding-Standards/GitHub-Actions.md` | GitHub Actions,
Markdown, Natural Language | None (no framework-specific docs) | Aligned
|

</details>

<details>
<summary>Relevant issues (or links)</summary>

### Related work

- References PSModule/Process-PSModule#511

</details>

---------

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
@MariusStorhaug
Marius Storhaug (MariusStorhaug) merged commit 8414050 into main Aug 15, 2026
133 checks passed
@MariusStorhaug
Marius Storhaug (MariusStorhaug) deleted the dependabot/github_actions/github-actions-25c580fd63 branch August 15, 2026 13:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code Patch

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant