Compare commits

...
18 Commits
Author SHA1 Message Date
Joel AmbassandGitHub 1ce0d91ace Add workflow file for publishing releases to immutable action package
Code scanning - action / CodeQL-Build (push) Canceled after 0s
Test / Build (macos-latest) (push) Canceled after 0s
Test / Build (ubuntu-latest) (push) Canceled after 0s
Test / Build (windows-latest) (push) Canceled after 0s
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 HerleyandGitHub fa0a91b85d Merge pull request #341 from actions/robherley/bump-pkgs
Test / Build (macos-latest) (push) Canceled after 0s
Test / Build (ubuntu-latest) (push) Canceled after 0s
Test / Build (windows-latest) (push) Canceled after 0s
Update @actions/artifact version, bump dependencies
2024-07-05 11:11:21 -04:00
Rob HerleyandGitHub b54d0883e1 Update @actions/artifact version, bump dependencies
Code scanning - action / CodeQL-Build (push) Canceled after 0s
Test / Build (macos-latest) (push) Canceled after 0s
Test / Build (ubuntu-latest) (push) Canceled after 0s
Test / Build (windows-latest) (push) Canceled after 0s
2024-07-05 14:45:55 +00:00
BethanyandGitHub 65a9edc588 Merge pull request #325 from bethanyj28/main
Test / Build (macos-latest) (push) Canceled after 0s
Test / Build (ubuntu-latest) (push) Canceled after 0s
Test / Build (windows-latest) (push) Canceled after 0s
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
eggyheadandGitHub 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
eggyheadandGitHub 9c19ed7fe5 Merge branch 'main' into eggyhead/use-artifact-v2.1.6
Code scanning - action / CodeQL-Build (push) Canceled after 0s
Test / Build (macos-latest) (push) Canceled after 0s
Test / Build (ubuntu-latest) (push) Canceled after 0s
Test / Build (windows-latest) (push) Canceled after 0s
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
eggyheadandGitHub 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
Code scanning - action / CodeQL-Build (push) Canceled after 0s
Test / Build (macos-latest) (push) Canceled after 0s
Test / Build (ubuntu-latest) (push) Canceled after 0s
Test / Build (windows-latest) (push) Canceled after 0s
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 HerleyandGitHub 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
Rob HerleyandGitHub d98334b11d Update readme with v3/v2/v1 deprecation notice
Code scanning - action / CodeQL-Build (push) Canceled after 0s
- https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/
- https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/
2024-04-16 16:50:38 -04:00
7 changed files with 19452 additions and 13596 deletions
@@ -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
+1 -1
View File
@@ -1,6 +1,6 @@
---
name: "@actions/artifact"
version: 2.1.4
version: 2.1.8
type: npm
summary: Actions artifact lib
homepage: https://github.com/actions/toolkit/tree/main/packages/artifact
+1 -1
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
+6
View File
@@ -1,5 +1,11 @@
# `@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).
+18559 -13222
View File
File diff suppressed because it is too large Load Diff
+862 -369
View File
File diff suppressed because it is too large Load Diff
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "download-artifact",
"version": "4.1.4",
"version": "4.1.7",
"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.1.8",
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1",
"minimatch": "^9.0.3"
},