Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dawidd6/action-download-artifact
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.1.3
Choose a base ref
...
head repository: dawidd6/action-download-artifact
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.1.4
Choose a head ref
  • 3 commits
  • 3 files changed
  • 2 contributors

Commits on Mar 16, 2024

  1. build(deps): bump adm-zip from 0.5.10 to 0.5.12 (#282)

    [ci skip]
    
    Bumps [adm-zip](https://github.com/cthackers/adm-zip) from 0.5.10 to 0.5.12.
    - [Release notes](https://github.com/cthackers/adm-zip/releases)
    - [Changelog](https://github.com/cthackers/adm-zip/blob/master/history.md)
    - [Commits](cthackers/adm-zip@v0.5.10...v0.5.12)
    
    ---
    updated-dependencies:
    - dependency-name: adm-zip
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Mar 16, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ffef66c View commit details
  2. build(deps): bump @actions/artifact from 2.1.2 to 2.1.4 (#280)

    Bumps [@actions/artifact](https://github.com/actions/toolkit/tree/HEAD/packages/artifact) from 2.1.2 to 2.1.4.
    - [Changelog](https://github.com/actions/toolkit/blob/main/packages/artifact/RELEASES.md)
    - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/artifact)
    
    ---
    updated-dependencies:
    - dependency-name: "@actions/artifact"
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Mar 16, 2024
    Copy the full SHA
    4a559ba View commit details

Commits on Mar 18, 2024

  1. fix: accept expired artifacts with documentation url (#283)

    wdconinc authored Mar 18, 2024
    Copy the full SHA
    09f2f74 View commit details
Showing with 11 additions and 11 deletions.
  1. +1 −1 main.js
  2. +8 −8 package-lock.json
  3. +2 −2 package.json
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
@@ -253,7 +253,7 @@ async function main() {
archive_format: "zip",
})
} catch (error) {
if (error.message === "Artifact has expired") {
if (error.message.startsWith("Artifact has expired")) {
return setExitMessage(ifNoArtifactFound, "no downloadable artifacts found (expired)")
} else {
throw new Error(error.message)
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -2,10 +2,10 @@
"name": "action-download-artifact",
"main": "main.js",
"dependencies": {
"@actions/artifact": "^2.1.2",
"@actions/artifact": "^2.1.4",
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"adm-zip": "^0.5.10",
"adm-zip": "^0.5.12",
"filesize": "^9.0.11"
}
}