From 92202e4ebf63e05ff2c50f5f57705374d43661e4 Mon Sep 17 00:00:00 2001 From: Daniel Kennedy Date: Wed, 11 Mar 2026 16:06:04 -0400 Subject: [PATCH] Update upload artifact versions --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bd06392..0cccfe6 100644 --- a/README.md +++ b/README.md @@ -143,7 +143,7 @@ steps: ### Download Artifacts by ID -The `artifact-ids` input allows downloading artifacts using their unique ID rather than name. This is particularly useful when working with immutable artifacts from `actions/upload-artifact@v4` which assigns a unique ID to each artifact. +The `artifact-ids` input allows downloading artifacts using their unique ID rather than name. This is particularly useful when working with immutable artifacts from `actions/upload-artifact@v4+` which assigns a unique ID to each artifact. Download a single artifact by ID to the current working directory (`$GITHUB_WORKSPACE`): @@ -253,7 +253,7 @@ jobs: - name: Create a File run: echo "hello from ${{ matrix.runs-on }}" > file-${{ matrix.runs-on }}.txt - name: Upload Artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: my-artifact-${{ matrix.runs-on }} path: file-${{ matrix.runs-on }}.txt