Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: actions/upload-artifact
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.2.2
Choose a base ref
...
head repository: actions/upload-artifact
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.2.3
Choose a head ref
  • 8 commits
  • 8 files changed
  • 4 contributors

Commits on Jan 5, 2021

  1. Copy the full SHA
    16b8b2b View commit details

Commits on Jan 7, 2021

  1. Update README.md

    konradpabjan authored Jan 7, 2021
    Copy the full SHA
    a4f98af View commit details

Commits on Jan 15, 2021

  1. Add on: pull_request trigger to CodeQL workflow (#165)

    From February 2021, in order to provide feedback on pull requests, Code Scanning workflows must be configured with both `push` and `pull_request` triggers. This is because Code Scanning compares the results from a pull request against the results for the base branch to tell you only what has changed between the two.
    
    Early in the beta period we supported displaying results on pull requests for workflows with only `push` triggers, but have discontinued support as this proved to be less robust.
    
    See https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#scanning-pull-requests for more information on how best to configure your Code Scanning workflows.
    rneatherway authored Jan 15, 2021
    Copy the full SHA
    a1af2e8 View commit details

Commits on Feb 8, 2021

  1. Copy the full SHA
    0fbc4b7 View commit details
  2. update index.js

    yacaovsnc committed Feb 8, 2021
    Copy the full SHA
    e95d1b9 View commit details
  3. Merge pull request #173 from yacaovsnc/main

    Display a warning if user tries to upload over 10000 files
    yacaovsnc authored Feb 8, 2021
    Copy the full SHA
    ea3d524 View commit details

Commits on Apr 6, 2021

  1. Bump y18n from 4.0.0 to 4.0.1 (#186)

    Bumps [y18n](https://github.com/yargs/y18n) from 4.0.0 to 4.0.1.
    - [Release notes](https://github.com/yargs/y18n/releases)
    - [Changelog](https://github.com/yargs/y18n/blob/master/CHANGELOG.md)
    - [Commits](https://github.com/yargs/y18n/commits)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 6, 2021
    Copy the full SHA
    bcd44ad View commit details
  2. Bump @actions/artifact to version 0.5.1 (#189)

    * Bump @actions/artifact to version 0.5.1
    
    * Update license versions
    konradpabjan authored Apr 6, 2021
    Copy the full SHA
    ee69f02 View commit details
Showing with 1,589 additions and 1,581 deletions.
  1. +1 −0 .github/workflows/codeql-analysis.yml
  2. +1 −1 .licenses/npm/@actions/artifact.dep.yml
  3. +1 −1 .licenses/npm/@actions/http-client.dep.yml
  4. +10 −2 README.md
  5. +1,551 −1,546 dist/index.js
  6. +18 −30 package-lock.json
  7. +1 −1 package.json
  8. +6 −0 src/upload-artifact.ts
1 change: 1 addition & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -2,6 +2,7 @@ name: "Code scanning - action"

on:
push:
pull_request:
paths-ignore:
- '**.md'
schedule:
2 changes: 1 addition & 1 deletion .licenses/npm/@actions/artifact.dep.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .licenses/npm/@actions/http-client.dep.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -219,11 +219,15 @@ Artifacts are retained for 90 days by default. You can specify a shorter retenti
The retention period must be between 1 and 90 inclusive. For more information see [artifact and log retention policies](https://docs.github.com/en/free-pro-team@latest/actions/reference/usage-limits-billing-and-administration#artifact-and-log-retention-policy).

## Where does the upload go?
In the top right corner of a workflow run, once the run is over, if you used this action, there will be an `Artifacts` dropdown which you can download items from. Here's a screenshot of what it looks like<br/>
<img src="https://user-images.githubusercontent.com/16109154/72556687-20235a80-386d-11ea-9e2a-b534faa77083.png" width="375" height="140">

At the bottom of the workflow summary page, there is a dedicated section for artifacts. Here's a screenshot of something you might see:

<img src="https://user-images.githubusercontent.com/16109154/103645952-223c6880-4f59-11eb-8268-8dca6937b5f9.png" width="700" height="300">

There is a trashcan icon that can be used to delete the artifact. This icon will only appear for users who have write permissions to the repository.

The size of the artifact is denoted in bytes. The displayed artifact size denotes the raw uploaded artifact size (the sum of all the individual files uploaded during the workflow run for the artifact), not the compressed size. When you click to download an artifact from the summary page, a compressed zip is created with all the contents of the artifact and the size of the zip that you download may differ significantly from the displayed size. Billing is based on the raw uploaded size and not the size of the zip.

# Limitations

### Zipped Artifact Downloads
@@ -252,7 +256,11 @@ If file permissions and case sensitivity are required, you can `tar` all of your
name: my-artifact
path: my_files.tar
```
### Too many uploads resulting in 429 responses

A very minute subset of users who upload a very very large amount of artifacts in a short period of time may see their uploads throttled or fail because of `Request was blocked due to exceeding usage of resource 'DBCPU' in namespace` or `Unable to copy file to server StatusCode=TooManyRequests`.

To reduce the chance of this happening, you can reduce the number of HTTP calls made during artifact upload by zipping or archiving the contents of your artifact before an upload starts. As an example, imagine an artifact with 1000 files (each 10 Kb in size). Without any modification, there would be around 1000 HTTP calls made to upload the artifact. If you zip or archive the artifact beforehand, the number of HTTP calls can be dropped to single digit territory. Measures like this will significantly speed up your upload and prevent uploads from being throttled or in some cases fail.

## Additional Documentation

3,097 changes: 1,551 additions & 1,546 deletions dist/index.js

Large diffs are not rendered by default.

48 changes: 18 additions & 30 deletions package-lock.json
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@
},
"homepage": "https://github.com/actions/upload-artifact#readme",
"dependencies": {
"@actions/artifact": "^0.5.0",
"@actions/artifact": "^0.5.1",
"@actions/core": "^1.2.6",
"@actions/glob": "^0.1.0",
"@actions/io": "^1.0.2"
6 changes: 6 additions & 0 deletions src/upload-artifact.ts
Original file line number Diff line number Diff line change
@@ -37,6 +37,12 @@ async function run(): Promise<void> {
)
core.debug(`Root artifact directory is ${searchResult.rootDirectory}`)

if (searchResult.filesToUpload.length > 10000) {
core.warning(
`There are over 10,000 files in this artifact, consider create an archive before upload to improve the upload performance.`
)
}

const artifactClient = create()
const options: UploadOptions = {
continueOnError: false