Skip to content
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): Bump the github-actions-dependencies group with 4 updates #252

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 13, 2025

Bumps the github-actions-dependencies group with 4 updates: step-security/harden-runner, github/codeql-action, actions/upload-artifact and python-semantic-release/python-semantic-release.

Updates step-security/harden-runner from 2.10.2 to 2.10.3

Release notes

Sourced from step-security/harden-runner's releases.

v2.10.3

What's Changed

Fixed an issue where DNS requests using uppercase characters (e.g., EXAMPLE.com) were blocked even when the domain was present in the allowed list. This update standardizes domain names to lowercase for consistent comparison.

Full Changelog: step-security/harden-runner@v2...v2.10.3

Commits

Updates github/codeql-action from 3.28.0 to 3.28.1

Release notes

Sourced from github/codeql-action's releases.

v3.28.1

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

3.28.1 - 10 Jan 2025

  • CodeQL Action v2 is now deprecated, and is no longer updated or supported. For better performance, improved security, and new features, upgrade to v3. For more information, see this changelog post. #2677
  • Update default CodeQL bundle version to 2.20.1. #2678

See the full CHANGELOG.md for more information.

Changelog

Sourced from github/codeql-action's changelog.

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

[UNRELEASED]

No user facing changes.

3.28.1 - 10 Jan 2025

  • CodeQL Action v2 is now deprecated, and is no longer updated or supported. For better performance, improved security, and new features, upgrade to v3. For more information, see this changelog post. #2677
  • Update default CodeQL bundle version to 2.20.1. #2678

3.28.0 - 20 Dec 2024

  • Bump the minimum CodeQL bundle version to 2.15.5. #2655
  • Don't fail in the unusual case that a file is on the search path. #2660.

3.27.9 - 12 Dec 2024

No user facing changes.

3.27.8 - 12 Dec 2024

  • Fixed an issue where streaming the download and extraction of the CodeQL bundle did not respect proxy settings. #2624

3.27.7 - 10 Dec 2024

  • We are rolling out a change in December 2024 that will extract the CodeQL bundle directly to the toolcache to improve performance. #2631
  • Update default CodeQL bundle version to 2.20.0. #2636

3.27.6 - 03 Dec 2024

  • Update default CodeQL bundle version to 2.19.4. #2626

3.27.5 - 19 Nov 2024

No user facing changes.

3.27.4 - 14 Nov 2024

No user facing changes.

3.27.3 - 12 Nov 2024

No user facing changes.

3.27.2 - 12 Nov 2024

  • Fixed an issue where setting up the CodeQL tools would sometimes fail with the message "Invalid value 'undefined' for header 'authorization'". #2590

... (truncated)

Commits
  • b6a472f Merge pull request #2681 from github/update-v3.28.1-ea6acbfea
  • bb999b4 Update changelog for v3.28.1
  • ea6acbf Merge pull request #2677 from github/angelapwen/deprecate-action-v2
  • 4df151e Merge branch 'main' into angelapwen/deprecate-action-v2
  • a05a7eb Fix PR number in changenote
  • 8d2753b Add public changelog blog post link
  • e83e0a4 Merge pull request #2673 from github/dependabot/npm_and_yarn/npm-877f465710
  • b7ff308 Merge pull request #2678 from github/update-bundle/codeql-bundle-v2.20.1
  • 1aa16c2 Merge branch 'main' into update-bundle/codeql-bundle-v2.20.1
  • fb65b6c Merge pull request #2672 from github/mbg/start-proxy/include-type-in-urls-output
  • Additional commits viewable in compare view

Updates actions/upload-artifact from 4.5.0 to 4.6.0

Release notes

Sourced from actions/upload-artifact's releases.

v4.6.0

What's Changed

Full Changelog: actions/upload-artifact@v4...v4.6.0

Commits
  • 65c4c4a Merge pull request #662 from actions/yacaovsnc/add_variable_for_concurrency_a...
  • 0207619 move files back to satisfy licensed ci
  • 1ecca81 licensed cache updates
  • 9742269 Expose env vars to controll concurrency and timeout
  • See full diff in compare view

Updates python-semantic-release/python-semantic-release from 9.15.2 to 9.16.1

Release notes

Sourced from python-semantic-release/python-semantic-release's releases.

v9.16.1 (2025-01-12)

Bug Fixes

  • parser-custom: Handle relative parent directory paths to module file better (#1142, c4056fc)

Documentation

  • github-actions: Update PSR versions in github workflow examples (#1140, 9bdd626)

Detailed Changes: v9.16.0...v9.16.1


Installable artifacts are available from:

v9.16.0 (2025-01-12)

Features

  • config: Expand dynamic parser import to handle a filepath to module (#1135, 0418fd8)

Bug Fixes

  • changelog: Fixes PSR release commit exclusions for customized commit messages (#1139, f9a2078)

  • cmd-version: Fixes --print-tag result to match configured tag format (#1134, a990aa7)

  • cmd-version: Fixes tag format on default version when force bump for initial release (#1138, 007fd00)

  • config-changelog: Validates changelog.exclude_commit_patterns on config load (#1139, f9a2078)

Documentation

  • commit-parsing: Add the new custom parser import spec description for direct path imports (#1135, 0418fd8)

  • configuration: Adjust commit_parser option definition for direct path imports (#1135, 0418fd8)

Resolved Issues

  • #687: Fix: custom commit parser path loading
  • #1137: Configured tag_format is ignored if there are no tags in the repository

... (truncated)

Changelog

Sourced from python-semantic-release/python-semantic-release's changelog.

CHANGELOG

v9.16.1 (2025-01-12)

Bug Fixes

  • parser-custom: Handle relative parent directory paths to module file better (#1142, c4056fc)

The dynamic import originally would just replace "/" with "." to make the import module name more pythonic, however this would be problematic in monorepos which would use "../../misc/commit_parser.py" to locate the parser and so the resulting sys.modules entry would have numerous periods (.) as a prefix. This removes that possibility. Still always an issue if the imported module name matches an existing module but the likelihood is low.

Documentation

  • github-actions: Update PSR versions in github workflow examples (#1140, 9bdd626)

v9.16.0 (2025-01-12)

Bug Fixes

  • changelog: Fixes PSR release commit exclusions for customized commit messages (#1139, f9a2078)
  • fix(config-changelog): validate changelog.exclude_commit_patterns on config load

  • test(fixtures): relocate sanitize changelog functions

  • test(cmd-version): add test to validate that custom release messages are ignored in changelog

  • test(config): add changelog.exclude_commit_patterns validation check

  • style(config): refactor import names of re module

  • cmd-version: Fix --print-tag result to match configured tag format (#1134, a990aa7)
  • test(fixtures): add new trunk repo that has a different tag format

  • test(fixtures): add helper to extract config settings from repo action definition

... (truncated)

Commits
  • d6a3be3 9.16.1
  • c4056fc fix(parser-custom): handle relative parent directory paths to module file bet...
  • 3cf32b8 ci(cicd-wkflow): add version updater for documentation before release (#1141)
  • 9bdd626 docs(github-actions): update PSR versions in github workflow examples (#1140)
  • de838f3 9.16.0
  • 0418fd8 feat(config): expand dynamic parser import to handle a filepath to module (#...
  • f9a2078 fix(changelog): fixes PSR release commit exclusions for customized commit mes...
  • 007fd00 fix(cmd-version): fix tag format on default version when force bump for initi...
  • a990aa7 fix(cmd-version): fix --print-tag result to match configured tag format (#1...
  • 33b9371 ci(deps): bump tj-actions/changed-files action from 45.0.5 to 45.0.6 (#1133)
  • Additional commits viewable in compare view

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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

Summary by Sourcery

Update GitHub Actions dependencies: step-security/harden-runner to 2.10.3, github/codeql-action to 3.28.1, actions/upload-artifact to 4.6.0, and python-semantic-release/python-semantic-release to 9.16.1.

CI:

  • Update step-security/harden-runner to 2.10.3 in CI workflows.
  • Update github/codeql-action to 3.28.1 in CI workflows.
  • Update actions/upload-artifact to 4.6.0 in CI workflows.
  • Update python-semantic-release/python-semantic-release to 9.16.1 in CI workflows.

Bumps the github-actions-dependencies group with 4 updates: [step-security/harden-runner](https://github.com/step-security/harden-runner), [github/codeql-action](https://github.com/github/codeql-action), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [python-semantic-release/python-semantic-release](https://github.com/python-semantic-release/python-semantic-release).


Updates `step-security/harden-runner` from 2.10.2 to 2.10.3
- [Release notes](https://github.com/step-security/harden-runner/releases)
- [Commits](step-security/harden-runner@0080882...c95a14d)

Updates `github/codeql-action` from 3.28.0 to 3.28.1
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](github/codeql-action@48ab28a...b6a472f)

Updates `actions/upload-artifact` from 4.5.0 to 4.6.0
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@6f51ac0...65c4c4a)

Updates `python-semantic-release/python-semantic-release` from 9.15.2 to 9.16.1
- [Release notes](https://github.com/python-semantic-release/python-semantic-release/releases)
- [Changelog](https://github.com/python-semantic-release/python-semantic-release/blob/master/CHANGELOG.md)
- [Commits](python-semantic-release/python-semantic-release@7b3f716...d6a3be3)

---
updated-dependencies:
- dependency-name: step-security/harden-runner
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions-dependencies
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions-dependencies
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions-dependencies
- dependency-name: python-semantic-release/python-semantic-release
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Jan 13, 2025
Copy link

sourcery-ai bot commented Jan 13, 2025

Reviewer's Guide by Sourcery

This pull request updates the GitHub Actions dependencies. It bumps step-security/harden-runner from 2.10.2 to 2.10.3, github/codeql-action from 3.28.0 to 3.28.1, actions/upload-artifact from 4.5.0 to 4.6.0, and python-semantic-release/python-semantic-release from 9.15.2 to 9.16.1.

No diagrams generated as the changes look simple and do not need a visual representation.

File-Level Changes

Change Details Files
Bumped step-security/harden-runner from 2.10.2 to 2.10.3
  • Updated the uses directive in workflows to use the new version 2.10.3 and commit hash of the action.
.github/workflows/codeql.yml
.github/workflows/continuous-integration.yml
.github/workflows/scorecard.yml
.github/workflows/semantic-release.yml
.github/workflows/dependency-review.yml
Bumped github/codeql-action from 3.28.0 to 3.28.1
  • Updated the uses directive in workflows to use the new version 3.28.1 and commit hash of the action.
.github/workflows/codeql.yml
.github/workflows/scorecard.yml
Bumped actions/upload-artifact from 4.5.0 to 4.6.0
  • Updated the uses directive in workflows to use the new version 4.6.0 and commit hash of the action.
.github/workflows/continuous-integration.yml
.github/workflows/scorecard.yml
Bumped python-semantic-release/python-semantic-release from 9.15.2 to 9.16.1
  • Updated the uses directive in the workflow to use the new version 9.16.1 and commit hash of the action.
.github/workflows/semantic-release.yml

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time. You can also use
    this command to specify where the summary should be inserted.

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have skipped reviewing this pull request. It seems to have been created by a bot (hey, dependabot[bot]!). We assume it knows what it's doing!

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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants