Skip to content

ci(deps): bump the github-actions group in /.github/workflows with 5 updates#29

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/github_actions/dot-github/workflows/github-actions-da7a883750
Closed

ci(deps): bump the github-actions group in /.github/workflows with 5 updates#29
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/github_actions/dot-github/workflows/github-actions-da7a883750

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 13, 2026

Bumps the github-actions group in /.github/workflows with 5 updates:

Package From To
step-security/harden-runner 2.16.1 2.17.0
taiki-e/install-action 2.73.0 2.75.9
step-security/paths-filter 3.0.5 4.0.1
actions/github-script 8.0.0 9.0.0
actions/upload-artifact 7.0.0 7.0.1

Updates step-security/harden-runner from 2.16.1 to 2.17.0

Release notes

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

v2.17.0

What's Changed

Policy Store Support

Added use-policy-store and api-key inputs to fetch security policies directly from the StepSecurity Policy Store. Policies can be defined and attached at the workflow, repo, org, or cluster (ARC) level, with the most granular policy taking precedence. This is the preferred method over the existing policy input which requires id-token: write permission. If no policy is found in the store, the action defaults to audit mode.

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

Commits

Updates taiki-e/install-action from 2.73.0 to 2.75.9

Release notes

Sourced from taiki-e/install-action's releases.

2.75.9

  • Enhance security when cargo-binstall fallback is used. (acc1621b)

2.75.8

  • Update vacuum@latest to 0.25.8.

  • Update mise@latest to 2026.4.9.

  • Update cargo-binstall@latest to 1.18.0.

  • Update gungraun-runner@latest to 0.18.1.

2.75.7

  • Update covgate@latest to 0.1.4.

  • Update wasm-bindgen@latest to 0.2.118.

2.75.6

  • Update mise@latest to 2026.4.8.

  • Update cargo-deny@latest to 0.19.1.

2.75.5

  • Update biome@latest to 2.4.11.

  • Update wasmtime@latest to 43.0.1.

  • Update uv@latest to 0.11.6.

  • Update mise@latest to 2026.4.7.

  • Update gungraun-runner@latest to 0.18.0.

2.75.4

  • Enhance security when cargo-binstall fallback is enabled. (08a38582, ba626b4d)

  • Update martin@latest to 1.5.0.

  • Update uv@latest to 0.11.5.

  • Update syft@latest to 1.42.4.

  • Update dprint@latest to 0.54.0.

2.75.3

  • Enhance security when cargo-binstall fallback is disabled. (77557fa3)

  • Update rclone@latest to 1.73.4.

2.75.2

... (truncated)

Changelog

Sourced from taiki-e/install-action's changelog.

Changelog

All notable changes to this project will be documented in this file.

This project adheres to Semantic Versioning.

[Unreleased]

[2.75.9] - 2026-04-13

  • Enhance security when cargo-binstall fallback is used. (acc1621b)

[2.75.8] - 2026-04-13

  • Update vacuum@latest to 0.25.8.

  • Update mise@latest to 2026.4.9.

  • Update cargo-binstall@latest to 1.18.0.

  • Update gungraun-runner@latest to 0.18.1.

[2.75.7] - 2026-04-11

  • Update covgate@latest to 0.1.4.

  • Update wasm-bindgen@latest to 0.2.118.

[2.75.6] - 2026-04-11

  • Update mise@latest to 2026.4.8.

  • Update cargo-deny@latest to 0.19.1.

[2.75.5] - 2026-04-10

  • Update biome@latest to 2.4.11.

  • Update wasmtime@latest to 43.0.1.

  • Update uv@latest to 0.11.6.

  • Update mise@latest to 2026.4.7.

  • Update gungraun-runner@latest to 0.18.0.

... (truncated)

Commits

Updates step-security/paths-filter from 3.0.5 to 4.0.1

Release notes

Sourced from step-security/paths-filter's releases.

v4.0.1

What's Changed

Full Changelog: step-security/paths-filter@v3...v4.0.1

Commits
  • 5c5241b Merge pull request #243 from step-security/feat/update-subscription-check
  • 4a740b4 claude comments addressed
  • c3c4a64 feat: added banner and update subscription check to make maintained actions f...
  • e7a5f27 Merge pull request #241 from step-security/auto-cherry-pick
  • 81a12d9 chore: Cherry-picked changes from upstream for conflicting changes
  • 8f54c5a feat: add merge_group event support
  • 6a7c5d6 Merge pull request #240 from step-security/auto-cherry-pick
  • c79c47b chore: Cherry-picked changes from upstream in package.json
  • 000dc59 feat: update action runtime to node24
  • 60b52a2 Merge pull request #236 from step-security/auto-cherry-pick
  • Additional commits viewable in compare view

Updates actions/github-script from 8.0.0 to 9.0.0

Release notes

Sourced from actions/github-script's releases.

v9.0.0

New features:

  • getOctokit factory function — Available directly in the script context. Create additional authenticated Octokit clients with different tokens for multi-token workflows, GitHub App tokens, and cross-org access. See Creating additional clients with getOctokit for details and examples.
  • Orchestration ID in user-agent — The ACTIONS_ORCHESTRATION_ID environment variable is automatically appended to the user-agent string for request tracing.

Breaking changes:

  • require('@actions/github') no longer works in scripts. The upgrade to @actions/github v9 (ESM-only) means require('@actions/github') will fail at runtime. If you previously used patterns like const { getOctokit } = require('@actions/github') to create secondary clients, use the new injected getOctokit function instead — it's available directly in the script context with no imports needed.
  • getOctokit is now an injected function parameter. Scripts that declare const getOctokit = ... or let getOctokit = ... will get a SyntaxError because JavaScript does not allow const/let redeclaration of function parameters. Use the injected getOctokit directly, or use var getOctokit = ... if you need to redeclare it.
  • If your script accesses other @actions/github internals beyond the standard github/octokit client, you may need to update those references for v9 compatibility.

What's Changed

New Contributors

Full Changelog: actions/github-script@v8.0.0...v9.0.0

Commits
  • 3a2844b Merge pull request #700 from actions/salmanmkc/expose-getoctokit + prepare re...
  • ca10bbd fix: use @​octokit/core/types import for v7 compatibility
  • 86e48e2 merge: incorporate main branch changes
  • c108472 chore: rebuild dist for v9 upgrade and getOctokit factory
  • afff112 Merge pull request #712 from actions/salmanmkc/deployment-false + fix user-ag...
  • ff8117e ci: fix user-agent test to handle orchestration ID
  • 81c6b78 ci: use deployment: false to suppress deployment noise from integration tests
  • 3953caf docs: update README examples from @​v8 to @​v9, add getOctokit docs and v9 brea...
  • c17d55b ci: add getOctokit integration test job
  • a047196 test: add getOctokit integration tests via callAsyncFunction
  • Additional commits viewable in compare view

Updates actions/upload-artifact from 7.0.0 to 7.0.1

Release notes

Sourced from actions/upload-artifact's releases.

v7.0.1

What's Changed

Full Changelog: actions/upload-artifact@v7...v7.0.1

Commits
  • 043fb46 Merge pull request #797 from actions/yacaovsnc/update-dependency
  • 634250c Include changes in typespec/ts-http-runtime 0.3.5
  • e454baa Readme: bump all the example versions to v7 (#796)
  • 74fad66 Update the readme with direct upload details (#795)
  • See full diff 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 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 in /.github/workflows with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [step-security/harden-runner](https://github.com/step-security/harden-runner) | `2.16.1` | `2.17.0` |
| [taiki-e/install-action](https://github.com/taiki-e/install-action) | `2.73.0` | `2.75.9` |
| [step-security/paths-filter](https://github.com/step-security/paths-filter) | `3.0.5` | `4.0.1` |
| [actions/github-script](https://github.com/actions/github-script) | `8.0.0` | `9.0.0` |
| [actions/upload-artifact](https://github.com/actions/upload-artifact) | `7.0.0` | `7.0.1` |


Updates `step-security/harden-runner` from 2.16.1 to 2.17.0
- [Release notes](https://github.com/step-security/harden-runner/releases)
- [Commits](step-security/harden-runner@fe10465...f808768)

Updates `taiki-e/install-action` from 2.73.0 to 2.75.9
- [Release notes](https://github.com/taiki-e/install-action/releases)
- [Changelog](https://github.com/taiki-e/install-action/blob/main/CHANGELOG.md)
- [Commits](taiki-e/install-action@7a562df...d0f2322)

Updates `step-security/paths-filter` from 3.0.5 to 4.0.1
- [Release notes](https://github.com/step-security/paths-filter/releases)
- [Commits](step-security/paths-filter@6eee183...5c5241b)

Updates `actions/github-script` from 8.0.0 to 9.0.0
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@ed59741...3a2844b)

Updates `actions/upload-artifact` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@bbbca2d...043fb46)

---
updated-dependencies:
- dependency-name: step-security/harden-runner
  dependency-version: 2.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: taiki-e/install-action
  dependency-version: 2.75.9
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: step-security/paths-filter
  dependency-version: 4.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: actions/github-script
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: actions/upload-artifact
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added area/ci CI/CD area/deps Dependencies labels Apr 13, 2026
@github-actions github-actions Bot added the area/config Configuration label Apr 13, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 20, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Apr 20, 2026
@dependabot dependabot Bot deleted the dependabot/github_actions/dot-github/workflows/github-actions-da7a883750 branch April 20, 2026 10:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area/ci CI/CD area/config Configuration area/deps Dependencies

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants