Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 8, 2025

Bumps the all group with 1 update in the / directory: async.

Updates async from 2.27.0 to 2.27.2

Changelog

Sourced from async's changelog.

v2.27.2

  • Fix context/index.yaml schema.

v2.27.1

  • Updated documentation and agent context.
Commits

Updates console from 1.32.0 to 1.33.0

Updates metrics from 0.12.2 to 0.13.0

Changelog

Sourced from metrics's changelog.

v0.13.0

  • Introduce metrics:provider:list command to list all available metrics providers.

v0.12.1

Introduce Metrics::Config to Expose prepare Hook

The metrics gem uses aspect-oriented programming to wrap existing methods to emit metrics. However, while there are some reasonable defaults for emitting metrics, it can be useful to customize the behavior and level of detail. To that end, the metrics gem now optionally loads a config/metrics.rb which includes a prepare hook that can be used to load additional providers.

# config/metrics.rb
def prepare
require 'metrics/provider/async'
require 'metrics/provider/async/http'
end

The prepare method is called immediately after the metrics backend is loaded. You can require any provider you want in this file, or even add your own custom providers.

Commits

Updates traces from 0.15.2 to 0.16.2

Commits

Bumps the all group with 2 updates: actions/download-artifact and ruby/setup-ruby.

Updates actions/download-artifact from 4.3.0 to 5.0.0

Release notes

Sourced from actions/download-artifact's releases.

v5.0.0

What's Changed

v5.0.0

🚨 Breaking Change

This release fixes an inconsistency in path behavior for single artifact downloads by ID. If you're downloading single artifacts by ID, the output path may change.

What Changed

Previously, single artifact downloads behaved differently depending on how you specified the artifact:

  • By name: name: my-artifact → extracted to path/ (direct)
  • By ID: artifact-ids: 12345 → extracted to path/my-artifact/ (nested)

Now both methods are consistent:

  • By name: name: my-artifact → extracted to path/ (unchanged)
  • By ID: artifact-ids: 12345 → extracted to path/ (fixed - now direct)

Migration Guide

✅ No Action Needed If:
  • You download artifacts by name
  • You download multiple artifacts by ID
  • You already use merge-multiple: true as a workaround
⚠️ Action Required If:

You download single artifacts by ID and your workflows expect the nested directory structure.

Before v5 (nested structure):

- uses: actions/download-artifact@v4
  with:
    artifact-ids: 12345
    path: dist
# Files were in: dist/my-artifact/

Where my-artifact is the name of the artifact you previously uploaded

To maintain old behavior (if needed):

</tr></table> 

... (truncated)

Commits
  • 634f93c Merge pull request #416 from actions/single-artifact-id-download-path
  • b19ff43 refactor: resolve download path correctly in artifact download tests (mainly ...
  • e262cbe bundle dist
  • bff23f9 update docs
  • fff8c14 fix download path logic when downloading a single artifact by id
  • 448e3f8 Merge pull request #407 from actions/nebuk89-patch-1
  • 47225c4 Update README.md
  • See full diff in compare view

Updates ruby/setup-ruby from 1.247.0 to 1.254.0

Release notes

Sourced from ruby/setup-ruby's releases.

v1.254.0

What's Changed

New Contributors

Full Changelog: ruby/setup-ruby@v1.253.0...v1.254.0

v1.253.0

What's Changed

Full Changelog: ruby/setup-ruby@v1.252.0...v1.253.0

v1.252.0

What's Changed

Full Changelog: ruby/setup-ruby@v1.251.0...v1.252.0

v1.251.0

What's Changed

Full Changelog: ruby/setup-ruby@v1.250.0...v1.251.0

v1.250.0

What's Changed

Full Changelog: ruby/setup-ruby@v1.249.0...v1.250.0

v1.249.0

What's Changed

Full Changelog: ruby/setup-ruby@v1.248.0...v1.249.0

v1.248.0

What's Changed

... (truncated)

Commits
  • 2a7b300 Rename to isExactCacheKeyMatch
  • 78876b7 Use case-insensitive key comparsion for cache keys
  • 3ec1ec0 Bump brace-expansion from 1.1.11 to 1.1.12
  • 45dc484 Bump form-data from 2.5.3 to 2.5.5
  • bb6434c Add non-null check
  • ba9e71c Add printing of the lockfile after installation
  • 0ecad18 Revert "Add printing of the lockfile after installation"
  • e8621f0 Add printing of the lockfile after installation
  • bd6859c Use core.group() instead of startGroup/endGroup
  • 223e443 Update CRuby releases on Windows
  • 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

Bumps the all group with 1 update in the / directory: [async](https://github.com/socketry/async).


Updates `async` from 2.27.0 to 2.27.2
- [Release notes](https://github.com/socketry/async/releases)
- [Changelog](https://github.com/socketry/async/blob/main/releases.md)
- [Commits](socketry/async@v2.27.0...v2.27.2)

Updates `console` from 1.32.0 to 1.33.0

Updates `metrics` from 0.12.2 to 0.13.0
- [Release notes](https://github.com/socketry/metrics/releases)
- [Changelog](https://github.com/socketry/metrics/blob/main/releases.md)
- [Commits](socketry/metrics@v0.12.2...v0.13.0)

Updates `traces` from 0.15.2 to 0.16.2
- [Changelog](https://github.com/socketry/traces/blob/main/release.cert)
- [Commits](socketry/traces@v0.15.2...v0.16.2)
build(deps): bump the all group with 2 updates

Bumps the all group with 2 updates: [actions/download-artifact](https://github.com/actions/download-artifact) and [ruby/setup-ruby](https://github.com/ruby/setup-ruby).


Updates `actions/download-artifact` from 4.3.0 to 5.0.0
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@d3f86a1...634f93c)

Updates `ruby/setup-ruby` from 1.247.0 to 1.254.0
- [Release notes](https://github.com/ruby/setup-ruby/releases)
- [Changelog](https://github.com/ruby/setup-ruby/blob/master/release.rb)
- [Commits](ruby/setup-ruby@v1.247.0...2a7b300)

---
updated-dependencies:
- dependency-name: async
  dependency-version: 2.27.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: console
  dependency-version: 1.33.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: metrics
  dependency-version: 0.13.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: traces
  dependency-version: 0.16.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: actions/download-artifact
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: ruby/setup-ruby
  dependency-version: 1.254.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies github_actions Pull requests that update Github_actions code ruby Pull requests that update Ruby code labels Aug 8, 2025
@EricFromCanada EricFromCanada merged commit 5da2aa4 into main Aug 8, 2025
11 checks passed
@EricFromCanada EricFromCanada deleted the dependabot/all-02e33aeded branch August 8, 2025 10:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies github_actions Pull requests that update Github_actions code ruby Pull requests that update Ruby code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant