mirror of
https://github.com/actions/download-artifact.git
synced 2025-12-27 01:53:57 -05:00
Compare commits
98 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
91bf594342 | ||
|
|
15367cc415 | ||
|
|
983cbdef67 | ||
|
|
24ef429fba | ||
|
|
e4bf51d561 | ||
|
|
36990830f2 | ||
|
|
f093f21ca4 | ||
|
|
6c8e9a74a3 | ||
|
|
9fdae6bee7 | ||
|
|
018cc2cf5b | ||
|
|
815651c680 | ||
|
|
bb3a066a8b | ||
|
|
fa1ce46bbd | ||
|
|
e605cf51ad | ||
|
|
a6c73a9235 | ||
|
|
3d7939314b | ||
|
|
c69518956c | ||
|
|
1a965d5855 | ||
|
|
9a17dd726a | ||
|
|
d799cd6276 | ||
|
|
f2793f092b | ||
|
|
d86c86bb47 | ||
|
|
4a24838f3d | ||
|
|
5e3251c4ff | ||
|
|
abefc31eaf | ||
|
|
ac43a6070a | ||
|
|
de96f4613b | ||
|
|
7993cb44e9 | ||
|
|
2653c123b8 | ||
|
|
7d782037f3 | ||
|
|
634f93cb29 | ||
|
|
b19ff43027 | ||
|
|
e262cbee4a | ||
|
|
bff23f9308 | ||
|
|
fff8c148a8 | ||
|
|
426e7e1989 | ||
|
|
448e3f862a | ||
|
|
47225c44b3 | ||
|
|
d3f86a106a | ||
|
|
fc02353415 | ||
|
|
77454371a4 | ||
|
|
84fc7a0a35 | ||
|
|
67f2bc382f | ||
|
|
8ea3c2c174 | ||
|
|
d219c630f6 | ||
|
|
54124fbd88 | ||
|
|
b83057b90d | ||
|
|
171183c7dc | ||
|
|
e463631f66 | ||
|
|
ec378bcca1 | ||
|
|
42aef06f22 | ||
|
|
ac35f995fe | ||
|
|
95815c38cf | ||
|
|
278fca438a | ||
|
|
68909842a1 | ||
|
|
f9415c0ec3 | ||
|
|
76a6eb5cbc | ||
|
|
a2426d7c45 | ||
|
|
3ffa694f6f | ||
|
|
53f6aa5f93 | ||
|
|
b456700053 | ||
|
|
9eab798a98 | ||
|
|
a39a661f39 | ||
|
|
9a869e9c49 | ||
|
|
96a6f165f4 | ||
|
|
df4ad15cb8 | ||
|
|
c7cfc3a2a3 | ||
|
|
2439186eed | ||
|
|
b14cf4c926 | ||
|
|
c5804ef743 | ||
|
|
956811a503 | ||
|
|
af3c6d3e5b | ||
|
|
4dd97f8f21 | ||
|
|
da9985dde6 | ||
|
|
81ba80daa4 | ||
|
|
727afbf2b0 | ||
|
|
56c2d7ea8c | ||
|
|
7797bfcd59 | ||
|
|
9ff67cb2d2 | ||
|
|
049eba1e9a | ||
|
|
503e7a18ae | ||
|
|
a8a786b097 | ||
|
|
24aef17bbf | ||
|
|
b81a615862 | ||
|
|
cc20338598 | ||
|
|
1fc0fee191 | ||
|
|
7fba95161a | ||
|
|
f9ceb7763b | ||
|
|
533298bc57 | ||
|
|
d06289e120 | ||
|
|
d0ce8fd116 | ||
|
|
1ce0d91ace | ||
|
|
fa0a91b85d | ||
|
|
b54d0883e1 | ||
|
|
65a9edc588 | ||
|
|
fdd1595981 | ||
|
|
c13dba102f | ||
|
|
0daa75ebea |
8
.github/workflows/check-dist.yml
vendored
8
.github/workflows/check-dist.yml
vendored
@@ -10,11 +10,7 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
@@ -24,10 +20,10 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Node 20
|
||||
- name: Setup Node 24
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20.x
|
||||
node-version: 24.x
|
||||
cache: 'npm'
|
||||
|
||||
- name: Install dependencies
|
||||
|
||||
2
.github/workflows/codeql-analysis.yml
vendored
2
.github/workflows/codeql-analysis.yml
vendored
@@ -20,7 +20,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
# Initializes the CodeQL tools for scanning.
|
||||
- name: Initialize CodeQL
|
||||
|
||||
20
.github/workflows/publish-immutable-actions.yml
vendored
Normal file
20
.github/workflows/publish-immutable-actions.yml
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
name: 'Publish Immutable Action Version'
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
id-token: write
|
||||
packages: write
|
||||
|
||||
steps:
|
||||
- name: Checking out
|
||||
uses: actions/checkout@v4
|
||||
- name: Publish
|
||||
id: publish
|
||||
uses: actions/publish-immutable-action@0.0.3
|
||||
7
.github/workflows/test.yml
vendored
7
.github/workflows/test.yml
vendored
@@ -22,10 +22,10 @@ jobs:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Node 20
|
||||
- name: Setup Node 24
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20.x
|
||||
node-version: 24.x
|
||||
cache: 'npm'
|
||||
|
||||
- name: npm install
|
||||
@@ -40,6 +40,9 @@ jobs:
|
||||
- name: Format
|
||||
run: npm run format-check
|
||||
|
||||
- name: Run Unit Tests
|
||||
run: npm test
|
||||
|
||||
- name: Create artifacts
|
||||
run: |
|
||||
mkdir -p path/to/artifact-A
|
||||
|
||||
@@ -9,7 +9,37 @@ allowed:
|
||||
- mit
|
||||
- cc0-1.0
|
||||
- unlicense
|
||||
- 0bsd
|
||||
- blueoak-1.0.0
|
||||
- other
|
||||
- none
|
||||
|
||||
ignored:
|
||||
npm:
|
||||
- "buffers"
|
||||
|
||||
reviewed:
|
||||
npm:
|
||||
- fs.realpath
|
||||
- fs.realpath
|
||||
- "@actions/http-client"
|
||||
- "@bufbuild/protobuf"
|
||||
- "@pkgjs/parseargs"
|
||||
- "@protobuf-ts/runtime"
|
||||
- argparse
|
||||
- chainsaw
|
||||
- color-convert
|
||||
- ieee754
|
||||
- jackspeak
|
||||
- lodash
|
||||
- mdurl
|
||||
- neo-async
|
||||
- package-json-from-dist
|
||||
- path-scurry
|
||||
- readable-stream
|
||||
- sax
|
||||
- source-map
|
||||
- string_decoder
|
||||
- traverse
|
||||
- tslib
|
||||
- uglify-js
|
||||
- wordwrap
|
||||
BIN
.licenses/npm/@actions/artifact.dep.yml
generated
BIN
.licenses/npm/@actions/artifact.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/@actions/core.dep.yml
generated
BIN
.licenses/npm/@actions/core.dep.yml
generated
Binary file not shown.
Binary file not shown.
BIN
.licenses/npm/@actions/github.dep.yml
generated
BIN
.licenses/npm/@actions/github.dep.yml
generated
Binary file not shown.
Binary file not shown.
BIN
.licenses/npm/@actions/http-client-3.0.0.dep.yml
generated
Normal file
BIN
.licenses/npm/@actions/http-client-3.0.0.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/@actions/io.dep.yml
generated
Normal file
BIN
.licenses/npm/@actions/io.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/@azure/abort-controller-2.1.2.dep.yml
generated
Normal file
BIN
.licenses/npm/@azure/abort-controller-2.1.2.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/@azure/core-auth.dep.yml
generated
BIN
.licenses/npm/@azure/core-auth.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/@azure/core-client.dep.yml
generated
Normal file
BIN
.licenses/npm/@azure/core-client.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/@azure/core-http-compat.dep.yml
generated
Normal file
BIN
.licenses/npm/@azure/core-http-compat.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/@azure/core-http.dep.yml
generated
BIN
.licenses/npm/@azure/core-http.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/@azure/core-lro.dep.yml
generated
BIN
.licenses/npm/@azure/core-lro.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/@azure/core-paging.dep.yml
generated
BIN
.licenses/npm/@azure/core-paging.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/@azure/core-rest-pipeline.dep.yml
generated
Normal file
BIN
.licenses/npm/@azure/core-rest-pipeline.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/@azure/core-tracing-1.3.1.dep.yml
generated
Normal file
BIN
.licenses/npm/@azure/core-tracing-1.3.1.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/@azure/core-util.dep.yml
generated
BIN
.licenses/npm/@azure/core-util.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/@azure/core-xml.dep.yml
generated
Normal file
BIN
.licenses/npm/@azure/core-xml.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/@azure/logger.dep.yml
generated
BIN
.licenses/npm/@azure/logger.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/@azure/storage-blob.dep.yml
generated
BIN
.licenses/npm/@azure/storage-blob.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/@azure/storage-common.dep.yml
generated
Normal file
BIN
.licenses/npm/@azure/storage-common.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/@bufbuild/protobuf.dep.yml
generated
Normal file
BIN
.licenses/npm/@bufbuild/protobuf.dep.yml
generated
Normal file
Binary file not shown.
Binary file not shown.
BIN
.licenses/npm/@fastify/busboy.dep.yml
generated
BIN
.licenses/npm/@fastify/busboy.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/@isaacs/cliui.dep.yml
generated
Normal file
BIN
.licenses/npm/@isaacs/cliui.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/@octokit/auth-token.dep.yml
generated
BIN
.licenses/npm/@octokit/auth-token.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/@octokit/core.dep.yml
generated
BIN
.licenses/npm/@octokit/core.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/@octokit/endpoint.dep.yml
generated
BIN
.licenses/npm/@octokit/endpoint.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/@octokit/graphql.dep.yml
generated
BIN
.licenses/npm/@octokit/graphql.dep.yml
generated
Binary file not shown.
Binary file not shown.
BIN
.licenses/npm/@octokit/openapi-types-24.2.0.dep.yml
generated
Normal file
BIN
.licenses/npm/@octokit/openapi-types-24.2.0.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/@octokit/plugin-paginate-rest.dep.yml
generated
BIN
.licenses/npm/@octokit/plugin-paginate-rest.dep.yml
generated
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
.licenses/npm/@octokit/request.dep.yml
generated
BIN
.licenses/npm/@octokit/request.dep.yml
generated
Binary file not shown.
Binary file not shown.
BIN
.licenses/npm/@octokit/types-13.10.0.dep.yml
generated
Normal file
BIN
.licenses/npm/@octokit/types-13.10.0.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/@opentelemetry/api.dep.yml
generated
BIN
.licenses/npm/@opentelemetry/api.dep.yml
generated
Binary file not shown.
Binary file not shown.
BIN
.licenses/npm/@protobuf-ts/plugin.dep.yml
generated
BIN
.licenses/npm/@protobuf-ts/plugin.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/@protobuf-ts/protoc.dep.yml
generated
BIN
.licenses/npm/@protobuf-ts/protoc.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/@protobuf-ts/runtime-rpc.dep.yml
generated
BIN
.licenses/npm/@protobuf-ts/runtime-rpc.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/@protobuf-ts/runtime.dep.yml
generated
BIN
.licenses/npm/@protobuf-ts/runtime.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/@types/node-fetch.dep.yml
generated
BIN
.licenses/npm/@types/node-fetch.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/@types/node.dep.yml
generated
BIN
.licenses/npm/@types/node.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/@typescript/vfs.dep.yml
generated
Normal file
BIN
.licenses/npm/@typescript/vfs.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/@typespec/ts-http-runtime.dep.yml
generated
Normal file
BIN
.licenses/npm/@typespec/ts-http-runtime.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/abort-controller.dep.yml
generated
Normal file
BIN
.licenses/npm/abort-controller.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/agent-base.dep.yml
generated
Normal file
BIN
.licenses/npm/agent-base.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/ansi-regex-5.0.1.dep.yml
generated
Normal file
BIN
.licenses/npm/ansi-regex-5.0.1.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/ansi-regex-6.2.2.dep.yml
generated
Normal file
BIN
.licenses/npm/ansi-regex-6.2.2.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/ansi-styles-4.3.0.dep.yml
generated
Normal file
BIN
.licenses/npm/ansi-styles-4.3.0.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/ansi-styles-6.2.3.dep.yml
generated
Normal file
BIN
.licenses/npm/ansi-styles-6.2.3.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/archiver-utils-3.0.4.dep.yml
generated
BIN
.licenses/npm/archiver-utils-3.0.4.dep.yml
generated
Binary file not shown.
Binary file not shown.
BIN
.licenses/npm/archiver.dep.yml
generated
BIN
.licenses/npm/archiver.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/async.dep.yml
generated
BIN
.licenses/npm/async.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/b4a.dep.yml
generated
Normal file
BIN
.licenses/npm/b4a.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/balanced-match.dep.yml
generated
BIN
.licenses/npm/balanced-match.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/bare-events.dep.yml
generated
Normal file
BIN
.licenses/npm/bare-events.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/brace-expansion-1.1.11.dep.yml
generated
BIN
.licenses/npm/brace-expansion-1.1.11.dep.yml
generated
Binary file not shown.
Binary file not shown.
BIN
.licenses/npm/buffer-crc32.dep.yml
generated
BIN
.licenses/npm/buffer-crc32.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/buffer.dep.yml
generated
BIN
.licenses/npm/buffer.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/buffers.dep.yml
generated
BIN
.licenses/npm/buffers.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/call-bind-apply-helpers.dep.yml
generated
Normal file
BIN
.licenses/npm/call-bind-apply-helpers.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/camel-case.dep.yml
generated
BIN
.licenses/npm/camel-case.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/chainsaw.dep.yml
generated
BIN
.licenses/npm/chainsaw.dep.yml
generated
Binary file not shown.
Binary file not shown.
BIN
.licenses/npm/color-name.dep.yml
generated
Normal file
BIN
.licenses/npm/color-name.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/compress-commons.dep.yml
generated
BIN
.licenses/npm/compress-commons.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/concat-map.dep.yml
generated
BIN
.licenses/npm/concat-map.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/crc32-stream.dep.yml
generated
BIN
.licenses/npm/crc32-stream.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/cross-spawn.dep.yml
generated
Normal file
BIN
.licenses/npm/cross-spawn.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/crypto.dep.yml
generated
BIN
.licenses/npm/crypto.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/debug.dep.yml
generated
Normal file
BIN
.licenses/npm/debug.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/dunder-proto.dep.yml
generated
Normal file
BIN
.licenses/npm/dunder-proto.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/eastasianwidth.dep.yml
generated
Normal file
BIN
.licenses/npm/eastasianwidth.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/emoji-regex-8.0.0.dep.yml
generated
Normal file
BIN
.licenses/npm/emoji-regex-8.0.0.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/emoji-regex-9.2.2.dep.yml
generated
Normal file
BIN
.licenses/npm/emoji-regex-9.2.2.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/es-define-property.dep.yml
generated
Normal file
BIN
.licenses/npm/es-define-property.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/es-errors.dep.yml
generated
Normal file
BIN
.licenses/npm/es-errors.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/es-object-atoms.dep.yml
generated
Normal file
BIN
.licenses/npm/es-object-atoms.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/es-set-tostringtag.dep.yml
generated
Normal file
BIN
.licenses/npm/es-set-tostringtag.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/event-target-shim.dep.yml
generated
Normal file
BIN
.licenses/npm/event-target-shim.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/events-universal.dep.yml
generated
Normal file
BIN
.licenses/npm/events-universal.dep.yml
generated
Normal file
Binary file not shown.
Binary file not shown.
BIN
.licenses/npm/fast-xml-parser.dep.yml
generated
Normal file
BIN
.licenses/npm/fast-xml-parser.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/foreground-child.dep.yml
generated
Normal file
BIN
.licenses/npm/foreground-child.dep.yml
generated
Normal file
Binary file not shown.
BIN
.licenses/npm/form-data.dep.yml
generated
BIN
.licenses/npm/form-data.dep.yml
generated
Binary file not shown.
BIN
.licenses/npm/fs.realpath.dep.yml
generated
BIN
.licenses/npm/fs.realpath.dep.yml
generated
Binary file not shown.
Binary file not shown.
BIN
.licenses/npm/get-intrinsic.dep.yml
generated
Normal file
BIN
.licenses/npm/get-intrinsic.dep.yml
generated
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user