Compare commits

...

25 Commits

Author SHA1 Message Date
Larissa Fortuna
727afbf2b0 Update README.md
removing deprecation warning
2025-03-12 15:02:16 -07:00
Yang Cao
cc20338598 Merge pull request #380 from actions/yacaovsnc/release_4_1_9
Update artifact package to 2.2.2
2025-02-25 16:23:11 -05:00
Yang Cao
1fc0fee191 Update artifact package to 2.2.2 2025-02-25 16:10:45 -05:00
Rob Herley
7fba95161a Merge pull request #372 from andyfeller/patch-1
Update MIGRATION.md
2025-01-10 12:01:23 -05:00
Andy Feller
f9ceb7763b Update MIGRATION.md
Fixing the broken link pointing to `actions/upload-artifact` content outside of the repository.

cc: @pedrolacerda
2025-01-10 11:56:44 -05:00
Josh Gross
533298bc57 Merge pull request #370 from froblesmartin/patch-1
docs: small migration fix
2024-12-23 13:12:54 -05:00
Francisco Robles Martín
d06289e120 docs: small migration fix 2024-12-23 14:32:00 +01:00
Joel Ambass
d0ce8fd116 Merge pull request #354 from actions/Jcambass-patch-1
Add workflow file for publishing releases to immutable action package
2024-09-26 08:20:04 +02:00
Joel Ambass
1ce0d91ace Add workflow file for publishing releases to immutable action package
This workflow file publishes new action releases to the immutable action package of the same name as this repo.

This is part of the Immutable Actions project which is not yet fully released to the public. First party actions like this one are part of our initial testing of this feature.
2024-09-24 15:12:00 +02:00
Rob Herley
fa0a91b85d Merge pull request #341 from actions/robherley/bump-pkgs
Update @actions/artifact version, bump dependencies
2024-07-05 11:11:21 -04:00
Rob Herley
b54d0883e1 Update @actions/artifact version, bump dependencies 2024-07-05 14:45:55 +00:00
Bethany
65a9edc588 Merge pull request #325 from bethanyj28/main
Update @actions/artifact dependency
2024-04-24 10:29:35 -04:00
bethanyj28
fdd1595981 licensed 2024-04-24 10:10:29 -04:00
bethanyj28
c13dba102f update @actions/artifact dependency 2024-04-24 10:05:20 -04:00
eggyhead
0daa75ebea Merge pull request #324 from actions/eggyhead/use-artifact-v2.1.6
updating artifact package v2.1.6
2024-04-22 08:57:57 -07:00
eggyhead
9c19ed7fe5 Merge branch 'main' into eggyhead/use-artifact-v2.1.6 2024-04-22 08:15:32 -07:00
Your Name
3d3ea8741e updating license 2024-04-22 08:13:41 -07:00
Your Name
89af5db821 updating artifact package v2.1.6 2024-04-22 08:12:12 -07:00
eggyhead
b4aefff88e Merge pull request #323 from actions/eggyhead/update-artifact-v215
updating `@actions/artifact` dependency to v2.1.5 and `@actions/core` to v1.0.1
2024-04-17 14:59:43 -07:00
eggyhead
8caf195ad4 package lock update 2024-04-17 20:50:58 +00:00
eggyhead
d7a2ec411d updating package version 2024-04-17 20:38:32 +00:00
eggyhead
e56a1d48ef updating core dependency 2024-04-17 17:01:10 +00:00
Your Name
1fcda58b3a updating core license 2024-04-17 09:28:24 -07:00
eggyhead
325a10d8b7 updating actions dependency to v2.1.5 2024-04-17 16:21:00 +00:00
Rob Herley
f8aaee4a21 Merge pull request #322 from actions/robherley/deprecation-notice
Update readme with v3/v2/v1 deprecation notice
2024-04-16 17:13:40 -04:00
8 changed files with 19530 additions and 16056 deletions

View 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

View File

@@ -1,6 +1,6 @@
---
name: "@actions/artifact"
version: 2.1.4
version: 2.2.2
type: npm
summary: Actions artifact lib
homepage: https://github.com/actions/toolkit/tree/main/packages/artifact

View File

@@ -1,6 +1,6 @@
---
name: "@actions/core"
version: 1.10.0
version: 1.10.1
type: npm
summary: Actions core lib
homepage: https://github.com/actions/toolkit/tree/main/packages/core

View File

@@ -1,11 +1,5 @@
# `@actions/download-artifact`
> [!WARNING]
> actions/download-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.
Download [Actions Artifacts](https://docs.github.com/en/actions/using-workflows/storing-workflow-data-as-artifacts) from your Workflow Runs. Internally powered by the [@actions/artifact](https://github.com/actions/toolkit/tree/main/packages/artifact) package.
See also [upload-artifact](https://github.com/actions/upload-artifact).

33942
dist/index.js vendored

File diff suppressed because it is too large Load Diff

View File

@@ -189,7 +189,8 @@ jobs:
- name: Create a File
run: echo "hello from ${{ matrix.runs-on }}" > file-${{ matrix.runs-on }}.txt
- name: Upload Artifact
uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
- name: all-my-files
+ name: my-artifact-${{ matrix.runs-on }}
@@ -205,4 +206,4 @@ jobs:
+ pattern: my-artifact-*
```
Note that this will download all artifacts to a temporary directory and reupload them as a single artifact. For more information on inputs and other use cases for `actions/upload-artifact/merge@v4`, see [the action documentation](../merge/README.md).
Note that this will download all artifacts to a temporary directory and reupload them as a single artifact. For more information on inputs and other use cases for `actions/upload-artifact/merge@v4`, see [the action documentation](https://github.com/actions/upload-artifact/blob/main/merge/README.md).

1601
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "download-artifact",
"version": "4.1.4",
"version": "4.1.9",
"description": "Download an Actions Artifact from a workflow run",
"main": "dist/index.js",
"scripts": {
@@ -28,8 +28,8 @@
},
"homepage": "https://github.com/actions/download-artifact#readme",
"dependencies": {
"@actions/artifact": "^2.1.1",
"@actions/core": "^1.10.0",
"@actions/artifact": "^2.2.2",
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1",
"minimatch": "^9.0.3"
},