From ab9e2743152de2f388321d37b91e3b7e9dd2f71c Mon Sep 17 00:00:00 2001 From: Daniel Kennedy Date: Fri, 10 Apr 2026 10:35:09 -0400 Subject: [PATCH] Update the TOC and remove a section --- README.md | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 128f25b..104646e 100644 --- a/README.md +++ b/README.md @@ -11,15 +11,14 @@ Upload [Actions Artifacts](https://docs.github.com/en/actions/using-workflows/st See also [download-artifact](https://github.com/actions/download-artifact). - [`@actions/upload-artifact`](#actionsupload-artifact) - - [v6 - What's new](#v6---whats-new) - - [v4 - What's new](#v4---whats-new) - - [Improvements](#improvements) - - [Breaking Changes](#breaking-changes) + - [What's new](#whats-new) + - [GHES Support](#ghes-support) - [Usage](#usage) - [Inputs](#inputs) - [Outputs](#outputs) - [Examples](#examples) - - [Upload an Individual File](#upload-an-individual-file) + - [Upload an Individual File (Zipped)](#upload-an-individual-file-zipped) + - [Upload an Individual File (Unzipped)](#upload-an-individual-file-unzipped) - [Upload an Entire Directory](#upload-an-entire-directory) - [Upload using a Wildcard Pattern](#upload-using-a-wildcard-pattern) - [Upload using Multiple Paths and Exclusions](#upload-using-multiple-paths-and-exclusions) @@ -34,7 +33,6 @@ See also [download-artifact](https://github.com/actions/download-artifact). - [Overwriting an Artifact](#overwriting-an-artifact) - [Limitations](#limitations) - [Number of Artifacts](#number-of-artifacts) - - [Zip archives](#zip-archives) - [Permission Loss](#permission-loss) - [Where does the upload go?](#where-does-the-upload-go) @@ -461,10 +459,6 @@ Within an individual job, there is a limit of 500 artifacts that can be created You may also be limited by Artifacts if you have exceeded your shared storage quota. Storage is calculated every 6-12 hours. See [the documentation](https://docs.github.com/en/billing/managing-billing-for-github-actions/about-billing-for-github-actions#calculating-minute-and-storage-spending) for more info. -### Zip archives - -When an Artifact is uploaded, all the files are assembled into an immutable Zip archive. There is currently no way to download artifacts in a format other than a Zip or to download individual artifact contents. - ### Permission Loss File permissions are not maintained during zipped artifact upload. All directories will have `755` and all files will have `644`. For example, if you make a file executable using `chmod` and then upload that file with `archive: true`, post-download the file is no longer guaranteed to be set as an executable.