Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 1, 2025

Bumps the github-actions group with 1 update: actions/download-artifact.

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

Dependabot compatibility score

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 github-actions group with 1 update: [actions/download-artifact](https://github.com/actions/download-artifact).


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)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the autosubmit Merge PR when tree becomes green via Auto Submit App label Sep 1, 2025
@dependabot dependabot bot requested a review from mosuem as a code owner September 1, 2025 12:53
@github-actions github-actions bot added the type-infra A repository infrastructure change or enhancement label Sep 1, 2025
Copy link

github-actions bot commented Sep 1, 2025

PR Health

Breaking changes ✔️
Package Change Current Version New Version Needed Version Looking good?

This check can be disabled by tagging the PR with skip-breaking-check.

Changelog Entry ✔️
Package Changed Files

Changes to files need to be accounted for in their respective changelogs.

This check can be disabled by tagging the PR with skip-changelog-check.

Coverage ✔️
File Coverage

This check for test coverage is informational (issues shown here will not fail the PR).

This check can be disabled by tagging the PR with skip-coverage-check.

API leaks ✔️

The following packages contain symbols visible in the public API, but not exported by the library. Export these symbols or remove them from your publicly visible API.

Package Leaked API symbol Leaking sources

This check can be disabled by tagging the PR with skip-leaking-check.

License Headers ✔️
// Copyright (c) 2025, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
Files
no missing headers

All source files should start with a license header.

This check can be disabled by tagging the PR with skip-license-check.

1 similar comment
Copy link

github-actions bot commented Sep 1, 2025

PR Health

Breaking changes ✔️
Package Change Current Version New Version Needed Version Looking good?

This check can be disabled by tagging the PR with skip-breaking-check.

Changelog Entry ✔️
Package Changed Files

Changes to files need to be accounted for in their respective changelogs.

This check can be disabled by tagging the PR with skip-changelog-check.

Coverage ✔️
File Coverage

This check for test coverage is informational (issues shown here will not fail the PR).

This check can be disabled by tagging the PR with skip-coverage-check.

API leaks ✔️

The following packages contain symbols visible in the public API, but not exported by the library. Export these symbols or remove them from your publicly visible API.

Package Leaked API symbol Leaking sources

This check can be disabled by tagging the PR with skip-leaking-check.

License Headers ✔️
// Copyright (c) 2025, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
Files
no missing headers

All source files should start with a license header.

This check can be disabled by tagging the PR with skip-license-check.

@auto-submit auto-submit bot merged commit a62bed2 into main Sep 1, 2025
19 checks passed
@auto-submit auto-submit bot deleted the dependabot/github_actions/github-actions-d1f77ae5d1 branch September 1, 2025 12:56
copybara-service bot pushed a commit to dart-lang/sdk that referenced this pull request Sep 2, 2025
…, webdev, webdriver

Revisions updated by `dart tools/rev_sdk_deps.dart`.

ai (https://github.com/dart-lang/ai/compare/a9eb685..1547a83):
  1547a83  2025-08-29  Jaime Wren  Fix the capitalization of the Cursor editor in the flag description (dart-lang/ai#276)

core (https://github.com/dart-lang/core/compare/b59ecf4..5c3e2c3):
  5c3e2c38  2025-09-02  dependabot[bot]  Bump actions/checkout from 4.2.2 to 5.0.0 in the github-actions group (dart-lang/core#904)

ecosystem (https://github.com/dart-lang/ecosystem/compare/fd28be2..d6370fb):
  d6370fb  2025-08-31  Daco Harkes  [health] Bump dart_apitool (dart-lang/ecosystem#367)

i18n (https://github.com/dart-lang/i18n/compare/9a211d1..a62bed2):
  a62bed2c  2025-09-01  dependabot[bot]  Bump actions/download-artifact in the github-actions group (dart-lang/i18n#1007)

protobuf (https://github.com/dart-lang/protobuf/compare/765ba8a..0a13935):
  0a13935  2025-09-02  dependabot[bot]  Bump actions/checkout from 4.2.2 to 5.0.0 (google/protobuf.dart#1046)

shelf (https://github.com/dart-lang/shelf/compare/400fc39..de91a5b):
  de91a5b  2025-09-01  dependabot[bot]  Bump the github-actions group with 2 updates (dart-lang/shelf#481)

sync_http (https://github.com/dart-lang/sync_http/compare/c07f96f..6666fff):
  6666fff  2025-09-02  dependabot[bot]  Bump actions/checkout from 4.2.2 to 5.0.0 (google/sync_http.dart#56)

web (https://github.com/dart-lang/web/compare/e7895bd..bdab462):
  bdab462  2025-09-01  dependabot[bot]  Bump actions/checkout from 4.2.2 to 5.0.0 in the github-actions group (dart-lang/web#462)
  d93ce7b  2025-08-29  Nikechukwu  [web_generator] Updated README (dart-lang/web#461)

webdev (https://github.com/dart-lang/webdev/compare/a7d3d2f..bf7b1e5):
  bf7b1e59  2025-09-02  dependabot[bot]  Bump the github-actions group with 2 updates (dart-lang/webdev#2684)
  769a0568  2025-08-29  Ben Konyi  [ DWDS ] Serve DevTools from DDS by default (dart-lang/webdev#2681)

webdriver (https://github.com/google/webdriver.dart/compare/595649d..09104f4):
  09104f4  2025-09-02  dependabot[bot]  Bump actions/checkout from 4.2.2 to 5.0.0 (google/webdriver.dart#332)
  5fbbbaa  2025-09-02  dependabot[bot]  Bump nanasess/setup-chromedriver (google/webdriver.dart#333)

Change-Id: Ib6275cc21e3a989142c46b59b1005277f3621db1
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/448222
Commit-Queue: Devon Carew <[email protected]>
Reviewed-by: Konstantin Shcheglov <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
autosubmit Merge PR when tree becomes green via Auto Submit App type-infra A repository infrastructure change or enhancement
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant