From 7993cb44e9052f2f08f9b828ae5ef3ecca7d2ac7 Mon Sep 17 00:00:00 2001 From: Yang Cao Date: Tue, 5 Aug 2025 18:06:12 -0400 Subject: [PATCH] Remove migration guide for artifact download changes Readme probably should be less verbose since it's not a changelog. --- README.md | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/README.md b/README.md index 90c223c..08b18d9 100644 --- a/README.md +++ b/README.md @@ -34,31 +34,6 @@ Now both methods are consistent: - **By name**: `name: my-artifact` → extracted to `path/` (unchanged) - **By ID**: `artifact-ids: 12345` → extracted to `path/` (updated - now direct) -#### Migration Guide - -If you download **single artifacts by ID** and your workflows expect the nested directory structure: - -**Before v5 (nested structure):** - -```yaml -- 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:** - -```yaml -- uses: actions/download-artifact@v5 - with: - artifact-ids: 12345 - path: dist/my-artifact # Explicitly specify the nested path -``` - ## v4 - What's new > [!IMPORTANT]