Compare commits

...

3 Commits

Author SHA1 Message Date
Jonathan Tamsut
2cb1440fc5 update license for artifact lib 2022-03-01 14:24:50 -08:00
Jonathan Tamsut
b6c980211a test commit 2022-03-01 13:41:58 -08:00
Thomas Boop
a327a9c763 Update default runtime to node16 (#134)
Node 12 has an end of life on April 30, 2022.

This PR updates the default runtime to [node16](https://github.blog/changelog/2021-12-10-github-actions-github-hosted-runners-now-run-node-js-16-by-default/), rather then node12. 

This is supported on all Actions Runners v2.285.0 or later.
2022-02-07 21:18:27 +01:00
5 changed files with 3169 additions and 10 deletions

View File

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

View File

@@ -1,5 +1,7 @@
# Download-Artifact v2
this is a test
This downloads artifacts from your build
See also [upload-artifact](https://github.com/actions/upload-artifact).

View File

@@ -9,5 +9,5 @@ inputs:
description: 'Destination path'
required: false
runs:
using: 'node12'
main: 'dist/index.js'
using: 'node16'
main: 'dist/index.js'

3169
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -28,7 +28,7 @@
},
"homepage": "https://github.com/actions/download-artifact#readme",
"dependencies": {
"@actions/artifact": "^0.6.0",
"@actions/artifact": "^1.0.0",
"@actions/core": "^1.2.6"
},
"devDependencies": {