mirror of
https://github.com/actions/upload-artifact.git
synced 2025-10-19 17:26:32 +00:00
Compare commits
31 Commits
eggyhead/r
...
v4.3.6
Author | SHA1 | Date | |
---|---|---|---|
|
834a144ee9 | ||
|
134dcf33c0 | ||
|
73a0b9c954 | ||
|
89ef406dd8 | ||
|
23d796df36 | ||
|
e445c64bc2 | ||
|
0b2256b8c0 | ||
|
488dcefb9b | ||
|
04c51f5766 | ||
|
32a9e276a8 | ||
|
552bf3722c | ||
|
79616d2ded | ||
|
65462800fd | ||
|
c004fb4bf6 | ||
|
90aba496fc | ||
|
b06cde36fc | ||
|
1746f4ab65 | ||
|
31685d04a0 | ||
|
18bf333cd2 | ||
|
dac413befa | ||
|
bb3b4a3cdb | ||
|
3e3da837d2 | ||
|
e35774f165 | ||
|
e63ea677fb | ||
|
ef09cdac3e | ||
|
00e36f94d8 | ||
|
4c0ff1c489 | ||
|
5d5d22a312 | ||
|
f1e993d966 | ||
|
4881bfd3f2 | ||
|
a30777e265 |
@@ -22,7 +22,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Update the ${{ env.TAG_NAME }} tag
|
- name: Update the ${{ env.TAG_NAME }} tag
|
||||||
id: update-major-tag
|
id: update-major-tag
|
||||||
uses: actions/publish-action@v0.2.1
|
uses: actions/publish-action@v0.3.0
|
||||||
with:
|
with:
|
||||||
source-tag: ${{ env.TAG_NAME }}
|
source-tag: ${{ env.TAG_NAME }}
|
||||||
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
|
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
|
||||||
|
2
.licenses/npm/@actions/artifact.dep.yml
generated
2
.licenses/npm/@actions/artifact.dep.yml
generated
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
name: "@actions/artifact"
|
name: "@actions/artifact"
|
||||||
version: 2.1.0
|
version: 2.1.8
|
||||||
type: npm
|
type: npm
|
||||||
summary:
|
summary:
|
||||||
homepage:
|
homepage:
|
||||||
|
2
.licenses/npm/@actions/core.dep.yml
generated
2
.licenses/npm/@actions/core.dep.yml
generated
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
name: "@actions/core"
|
name: "@actions/core"
|
||||||
version: 1.10.0
|
version: 1.10.1
|
||||||
type: npm
|
type: npm
|
||||||
summary:
|
summary:
|
||||||
homepage:
|
homepage:
|
||||||
|
@@ -1,5 +1,11 @@
|
|||||||
# `@actions/upload-artifact`
|
# `@actions/upload-artifact`
|
||||||
|
|
||||||
|
> [!WARNING]
|
||||||
|
> actions/upload-artifact@v3 is scheduled for deprecation on **November 30, 2024**. [Learn more.](https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/)
|
||||||
|
> Similarly, v1/v2 are scheduled for deprecation on **June 30, 2024**.
|
||||||
|
> Please update your workflow to use v4 of the artifact actions.
|
||||||
|
> This deprecation will not impact any existing versions of GitHub Enterprise Server being used by customers.
|
||||||
|
|
||||||
Upload [Actions Artifacts](https://docs.github.com/en/actions/using-workflows/storing-workflow-data-as-artifacts) from your Workflow Runs. Internally powered by [@actions/artifact](https://github.com/actions/toolkit/tree/main/packages/artifact) package.
|
Upload [Actions Artifacts](https://docs.github.com/en/actions/using-workflows/storing-workflow-data-as-artifacts) from your Workflow Runs. Internally powered by [@actions/artifact](https://github.com/actions/toolkit/tree/main/packages/artifact) package.
|
||||||
|
|
||||||
See also [download-artifact](https://github.com/actions/download-artifact).
|
See also [download-artifact](https://github.com/actions/download-artifact).
|
||||||
|
34160
dist/merge/index.js
vendored
34160
dist/merge/index.js
vendored
File diff suppressed because it is too large
Load Diff
36014
dist/upload/index.js
vendored
36014
dist/upload/index.js
vendored
File diff suppressed because it is too large
Load Diff
@@ -189,7 +189,8 @@ jobs:
|
|||||||
- name: Create a File
|
- name: Create a File
|
||||||
run: echo "hello from ${{ matrix.runs-on }}" > file-${{ matrix.runs-on }}.txt
|
run: echo "hello from ${{ matrix.runs-on }}" > file-${{ matrix.runs-on }}.txt
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
|
+ uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
- name: all-my-files
|
- name: all-my-files
|
||||||
+ name: my-artifact-${{ matrix.runs-on }}
|
+ name: my-artifact-${{ matrix.runs-on }}
|
||||||
|
1172
package-lock.json
generated
1172
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "upload-artifact",
|
"name": "upload-artifact",
|
||||||
"version": "4.3.0",
|
"version": "4.3.6",
|
||||||
"description": "Upload an Actions Artifact in a workflow run",
|
"description": "Upload an Actions Artifact in a workflow run",
|
||||||
"main": "dist/upload/index.js",
|
"main": "dist/upload/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@@ -29,8 +29,8 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://github.com/actions/upload-artifact#readme",
|
"homepage": "https://github.com/actions/upload-artifact#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/artifact": "^2.1.0",
|
"@actions/artifact": "2.1.8",
|
||||||
"@actions/core": "^1.10.0",
|
"@actions/core": "^1.10.1",
|
||||||
"@actions/github": "^6.0.0",
|
"@actions/github": "^6.0.0",
|
||||||
"@actions/glob": "^0.3.0",
|
"@actions/glob": "^0.3.0",
|
||||||
"@actions/io": "^1.1.2",
|
"@actions/io": "^1.1.2",
|
||||||
|
Reference in New Issue
Block a user