Skip to content

Commit 7993cb4

Browse files
authored
Remove migration guide for artifact download changes
Readme probably should be less verbose since it's not a changelog.
1 parent 2653c12 commit 7993cb4

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

README.md

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -34,31 +34,6 @@ Now both methods are consistent:
3434
- **By name**: `name: my-artifact` → extracted to `path/` (unchanged)
3535
- **By ID**: `artifact-ids: 12345` → extracted to `path/` (updated - now direct)
3636

37-
#### Migration Guide
38-
39-
If you download **single artifacts by ID** and your workflows expect the nested directory structure:
40-
41-
**Before v5 (nested structure):**
42-
43-
```yaml
44-
- uses: actions/download-artifact@v4
45-
with:
46-
artifact-ids: 12345
47-
path: dist
48-
# Files were in: dist/my-artifact/
49-
```
50-
51-
> Where `my-artifact` is the name of the artifact you previously uploaded
52-
53-
**To maintain old behavior:**
54-
55-
```yaml
56-
- uses: actions/download-artifact@v5
57-
with:
58-
artifact-ids: 12345
59-
path: dist/my-artifact # Explicitly specify the nested path
60-
```
61-
6237
## v4 - What's new
6338

6439
> [!IMPORTANT]

0 commit comments

Comments
 (0)