8000 Bump the version to `v8` and add release notes · actions/download-artifact@974686e · GitHub
Skip to content

Commit 974686e

Browse files
committed
Bump the version to v8 and add release notes
1 parent fbe48b1 commit 974686e

2 files changed

Lines changed: 14 additions & 6 deletions

File tree

README.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@ See also [upload-artifact](https://github.com/actions/upload-artifact).
2323
- [Limitations](#limitations)
2424
- [Permission Loss](#permission-loss)
2525

26+
## v8 - What's new
27+
28+
> [!IMPORTANT]
29+
> actions/download-artifact@v8 has been migrated to an ESM module. This should be transparent to the caller but forks might need to make significant changes.
30+
31+
- Downloads will check the content-type returned to determine if a file can be decompressed and skip the decompression stage if so. This removes previous failures where we were trying to decompress a non-zip file. Since this is making a big change to the default behavior, we're making it opt-in via a version bump.
32+
- Users can also download a zip file without decompressing it with the new `skip-decompress` flag.
33+
2634
## v7 - What's new
2735

2836
> [!IMPORTANT]
@@ -69,15 +77,15 @@ For assistance with breaking changes, see [MIGRATION.md](docs/MIGRATION.md).
6977

7078
## Note
7179

72-
Thank you for your interest in this GitHub repo, however, right now we are not taking contributions.
80+
Thank you for your interest in this GitHub repo, however, right now we are not taking contributions.
7381

7482
We continue to focus our resources on strategic areas that help our customers be successful while making developers' lives easier. While GitHub Actions remains a key part of this vision, we are allocating resources towards other areas of Actions and are not taking contributions to this repository at this time. The GitHub public roadmap is the best place to follow along for any updates on features we’re working on and what stage they’re in.
7583

7684
We are taking the following steps to better direct requests related to GitHub Actions, including:
7785

7886
1. We will be directing questions and support requests to our [Community Discussions area](https://github.com/orgs/community/discussions/categories/actions)
7987

80-
2. High Priority bugs can be reported through Community Discussions or you can report these to our support team https://support.github.com/contact/bug-report.
88+
2. High Priority bugs can be reported through Community Discussions or you can report these to our support team <https://support.github.com/contact/bug-report>.
8189

8290
3. Security Issues should be handled as per our [security.md](SECURITY.md).
8391

@@ -216,7 +224,7 @@ If the `name` input parameter is not provided, all artifacts will be downloaded.
216224

217225
Example, if there are two artifacts `Artifact-A` and `Artifact-B`, and the directory is `etc/usr/artifacts/`, the directory structure will look like this:
218226

219-
```
227+
```bash
220228
etc/usr/artifacts/
221229
Artifact-A/
222230
... contents of Artifact-A
@@ -258,7 +266,7 @@ steps:
258266

259267
Which will result in:
260268

261-
```
269+
```bash
262270
path/to/artifacts/
263271
... contents of Artifact-A
264272
... contents of Artifact-B
@@ -298,7 +306,7 @@ jobs:
298306

299307
This results in a directory like so:
300308

301-
```
309+
```bash
302310
my-artifact/
303311
file-macos-latest.txt
304312
file-ubuntu-latest.txt

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "download-artifact",
3-
"version": "7.0.0",
3+
"version": "8.0.0",
44
"description": "Download an Actions Artifact from a workflow run",
55
"type": "module",
66
"engines": {

0 commit comments

Comments
 (0)