Skip to content

Support direct file uploads#764

Merged
danwkennedy merged 12 commits intomainfrom
danwkennedy/direct-uploads
Feb 25, 2026
Merged

Support direct file uploads#764
danwkennedy merged 12 commits intomainfrom
danwkennedy/direct-uploads

Conversation

@danwkennedy
Copy link
Copy Markdown
Contributor

@danwkennedy danwkennedy commented Feb 25, 2026

Description

This adds support for uploading a file directly without zipping it.

Callers will need to opt into this change by setting the new archive flag to false (to maintain backwards compatibility, the flag defaults to true right now). Only a single file can be uploaded right now. If the action detects multiple files, it will error.

Breaking changes

  • We're supporting a new API version, version 7 so we're bumping the version of this client to match versions.

Copilot AI review requested due to automatic review settings February 25, 2026 19:10
@danwkennedy danwkennedy requested a review from a team as a code owner February 25, 2026 19:10
Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This pull request adds support for direct file uploads without archiving by introducing a new archive input parameter. When set to false, users can upload a single file directly without creating a zip archive. The implementation upgrades the @actions/artifact package from v6.1.0 to v6.2.0 to leverage the new skipArchive option.

Changes:

  • Added new archive boolean input (defaults to true for backward compatibility)
  • Implemented validation to ensure only a single file can be uploaded when archive is false
  • Updated package dependency to @actions/artifact v6.2.0 to support the skipArchive option

Reviewed changes

Copilot reviewed 7 out of 9 changed files in this pull request and generated 2 comments.

Show a summary per file
File Description
src/upload/upload-inputs.ts Added archive boolean field to UploadInputs interface with documentation
src/upload/constants.ts Added Archive constant to the Inputs enum
src/upload/input-helper.ts Added input retrieval for the archive parameter and included it in the returned inputs object
src/upload/upload-artifact.ts Added validation for single-file requirement when archive is false and sets skipArchive option accordingly
action.yml Added archive input parameter with description and default value of 'true', updated name and path descriptions
package.json Updated @actions/artifact dependency from ^6.1.0 to ^6.2.0
package-lock.json Updated lockfile to reflect the new artifact package version
dist/upload/index.js Compiled distribution file reflecting all source changes
tests/upload.test.ts Added Archive input to mock inputs default configuration
Comments suppressed due to low confidence (1)

src/upload/upload-artifact.ts:79

  • When archive is set to false, the compression-level option becomes irrelevant since no compression occurs. However, there's no validation or warning to inform users that setting compression-level has no effect when archive is false. Consider adding validation to either ignore or warn users about this incompatible configuration.
    if (typeof inputs.compressionLevel !== 'undefined') {
      options.compressionLevel = inputs.compressionLevel
    }

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread action.yml Outdated
Comment thread __tests__/upload.test.ts
Comment thread .github/workflows/test.yml Fixed
Comment on lines +390 to +428
needs: [build, merge]
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node 24
uses: actions/setup-node@v4
with:
node-version: 24.x
cache: 'npm'

- name: Install dependencies
run: npm ci

- name: Delete test artifacts
uses: actions/github-script@v7
with:
script: |
const artifactClient = require('@actions/artifact');
const artifact = artifactClient.default || artifactClient;

const {artifacts} = await artifact.listArtifacts({latest: true});
const keep = ['report.html'];

for (const a of artifacts) {
if (keep.includes(a.name)) {
console.log(`Keeping artifact '${a.name}'`);
continue;
}
try {
await artifact.deleteArtifact(a.name);
console.log(`Deleted artifact '${a.name}'`);
} catch (err) {
console.log(`Could not delete artifact '${a.name}': ${err.message}`);
}
}

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium test

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {contents: read}

Copilot Autofix

AI 2 months ago

In general, the fix is to add an explicit permissions: block that grants only the minimum scopes needed to run this workflow. This can be done at the workflow (top) level to apply to all jobs, or specifically on the cleanup job if different jobs need different scopes. Since the highlighted issue is on the cleanup job, and we want the smallest change without affecting other jobs’ current behavior, we will add a permissions: block only to the cleanup job.

The cleanup job reads and deletes artifacts via the @actions/artifact client. Artifact operations are governed by the actions permission, not contents. There is no need for contents: write, issues, pull-requests, etc. A minimal and appropriate configuration is:

    permissions:
      actions: write
      contents: read

actions: write allows managing artifacts created by workflows; contents: read is a safe baseline and recommended as a default read-only scope. We will insert this directly under runs-on: ubuntu-latest in the cleanup job, around line 392, in .github/workflows/test.yml. No imports or additional methods are required because this is purely a YAML configuration change.

Suggested changeset 1
.github/workflows/test.yml

Autofix patch

Autofix patch
Run the following command in your local git repository to apply this patch
cat << 'EOF' | git apply
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -389,6 +389,9 @@
     name: Cleanup Artifacts
     needs: [build, merge]
     runs-on: ubuntu-latest
+    permissions:
+      actions: write
+      contents: read
 
     steps:
     - name: Checkout
EOF
@@ -389,6 +389,9 @@
name: Cleanup Artifacts
needs: [build, merge]
runs-on: ubuntu-latest
permissions:
actions: write
contents: read

steps:
- name: Checkout
Copilot is powered by AI and may make mistakes. Always verify output.
Unable to commit as this autofix suggestion is now outdated
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Set the permissions block.

@danwkennedy danwkennedy merged commit bbbca2d into main Feb 25, 2026
12 checks passed
@Moumouls
Copy link
Copy Markdown

Moumouls commented Mar 1, 2026

@danwkennedy, you’re a lifesaver!

fdio-github pushed a commit to FDio/csit that referenced this pull request Mar 2, 2026
Bumps actions/upload-artifact from 6 to 7.
## Release notes

Sourced from actions/upload-artifact's releases.

v7.0.0
v7 What's new
Direct Uploads
Adds support for uploading single files directly (unzipped). Callers can set the new archive parameter to false to skip zipping the file during upload. Right now, we only support single files. The action will fail if the glob passed resolves to multiple files. The name parameter is also ignored with this setting. Instead, the name of the artifact will be the name of the uploaded file.
ESM
To support new versions of the @actions/* packages, we've upgraded the package to ESM.
What's Changed

Add proxy integration test by @​Link- in actions/upload-artifact#754
Upgrade the module to ESM and bump dependencies by @​danwkennedy in actions/upload-artifact#762
Support direct file uploads by @​danwkennedy in actions/upload-artifact#764

New Contributors

@​Link- made their first contribution in actions/upload-artifact#754

Full Changelog: actions/upload-artifact@v6...v7.0.0

## Commits

bbbca2d Support direct file uploads (#764)
589182c Upgrade the module to ESM and bump dependencies (#762)
47309c9 Merge pull request #754 from actions/Link-/add-proxy-integration-tests
02a8460 Add proxy integration test
See full diff in compare view

![Dependabot compatibility score](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Signed-off-by: dependabot[bot] <support@github.com>
Change-Id: Ia2e29e951761b7cd74c86c9469ca502af2b566f6
GitHub-PR: #4131
GitHub-Hash: ec81e01b2a1da5f9
Signed-off-by: fdio.github <releng+fdio-github@linuxfoundation.org>
mergify Bot added a commit to ArcadeData/arcadedb that referenced this pull request Mar 3, 2026
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6.0.0 to 7.0.0.
Release notes

*Sourced from [actions/upload-artifact's releases](https://github.com/actions/upload-artifact/releases).*

> v7.0.0
> ------
>
> v7 What's new
> -------------
>
> ### Direct Uploads
>
> Adds support for uploading single files directly (unzipped). Callers can set the new `archive` parameter to `false` to skip zipping the file during upload. Right now, we only support single files. The action will fail if the glob passed resolves to multiple files. The `name` parameter is also ignored with this setting. Instead, the name of the artifact will be the name of the uploaded file.
>
> ### ESM
>
> To support new versions of the `@actions/*` packages, we've upgraded the package to ESM.
>
> What's Changed
> --------------
>
> * Add proxy integration test by [`@​Link`](https://github.com/Link)- in [actions/upload-artifact#754](https://redirect.github.com/actions/upload-artifact/pull/754)
> * Upgrade the module to ESM and bump dependencies by [`@​danwkennedy`](https://github.com/danwkennedy) in [actions/upload-artifact#762](https://redirect.github.com/actions/upload-artifact/pull/762)
> * Support direct file uploads by [`@​danwkennedy`](https://github.com/danwkennedy) in [actions/upload-artifact#764](https://redirect.github.com/actions/upload-artifact/pull/764)
>
> New Contributors
> ----------------
>
> * [`@​Link`](https://github.com/Link)- made their first contribution in [actions/upload-artifact#754](https://redirect.github.com/actions/upload-artifact/pull/754)
>
> **Full Changelog**: <actions/upload-artifact@v6...v7.0.0>


Commits

* [`bbbca2d`](actions/upload-artifact@bbbca2d) Support direct file uploads ([#764](https://redirect.github.com/actions/upload-artifact/issues/764))
* [`589182c`](actions/upload-artifact@589182c) Upgrade the module to ESM and bump dependencies ([#762](https://redirect.github.com/actions/upload-artifact/issues/762))
* [`47309c9`](actions/upload-artifact@47309c9) Merge pull request [#754](https://redirect.github.com/actions/upload-artifact/issues/754) from actions/Link-/add-proxy-integration-tests
* [`02a8460`](actions/upload-artifact@02a8460) Add proxy integration test
* See full diff in [compare view](actions/upload-artifact@b7c566a...bbbca2d)
  
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility\_score?dependency-name=actions/upload-artifact&package-manager=github\_actions&previous-version=6.0.0&new-version=7.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
  
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot show  ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
mergify Bot added a commit to robfrank/linklift that referenced this pull request Mar 10, 2026
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6.0.0 to 7.0.0.
Release notes

*Sourced from [actions/upload-artifact's releases](https://github.com/actions/upload-artifact/releases).*

> v7.0.0
> ------
>
> v7 What's new
> -------------
>
> ### Direct Uploads
>
> Adds support for uploading single files directly (unzipped). Callers can set the new `archive` parameter to `false` to skip zipping the file during upload. Right now, we only support single files. The action will fail if the glob passed resolves to multiple files. The `name` parameter is also ignored with this setting. Instead, the name of the artifact will be the name of the uploaded file.
>
> ### ESM
>
> To support new versions of the `@actions/*` packages, we've upgraded the package to ESM.
>
> What's Changed
> --------------
>
> * Add proxy integration test by [`@​Link`](https://github.com/Link)- in [actions/upload-artifact#754](https://redirect.github.com/actions/upload-artifact/pull/754)
> * Upgrade the module to ESM and bump dependencies by [`@​danwkennedy`](https://github.com/danwkennedy) in [actions/upload-artifact#762](https://redirect.github.com/actions/upload-artifact/pull/762)
> * Support direct file uploads by [`@​danwkennedy`](https://github.com/danwkennedy) in [actions/upload-artifact#764](https://redirect.github.com/actions/upload-artifact/pull/764)
>
> New Contributors
> ----------------
>
> * [`@​Link`](https://github.com/Link)- made their first contribution in [actions/upload-artifact#754](https://redirect.github.com/actions/upload-artifact/pull/754)
>
> **Full Changelog**: <actions/upload-artifact@v6...v7.0.0>


Commits

* [`bbbca2d`](actions/upload-artifact@bbbca2d) Support direct file uploads ([#764](https://redirect.github.com/actions/upload-artifact/issues/764))
* [`589182c`](actions/upload-artifact@589182c) Upgrade the module to ESM and bump dependencies ([#762](https://redirect.github.com/actions/upload-artifact/issues/762))
* [`47309c9`](actions/upload-artifact@47309c9) Merge pull request [#754](https://redirect.github.com/actions/upload-artifact/issues/754) from actions/Link-/add-proxy-integration-tests
* [`02a8460`](actions/upload-artifact@02a8460) Add proxy integration test
* See full diff in [compare view](actions/upload-artifact@b7c566a...bbbca2d)
  
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility\_score?dependency-name=actions/upload-artifact&package-manager=github\_actions&previous-version=6.0.0&new-version=7.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
  
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot show  ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
qupo1 added a commit to qupo1/hn-sign-windows-installer that referenced this pull request Mar 28, 2026
- actions/checkout v4 -> v6
- actions/upload-artifact v4 -> v7
- SignPath/github-action-submit-signing-request v0.4 -> v2
- Use Direct Uploads feature of upload-artifact v7
actions/upload-artifact#764
- Avoid signing request on pull requests
# Download Artifact #1 and verify the correctness of the content
- name: 'Download artifact #1'
uses: actions/download-artifact@v4
uses: actions/download-artifact@main
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Genuinely curious - why isn't this action pinned to its commit SHA?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These two actions are intertwined quite a bit. Keeping this test's reference relative helps smoke test
somewhat.

renovate Bot added a commit to sdwilsh/sOS that referenced this pull request Apr 19, 2026
##### [\`v7.0.1\`](https://github.com/actions/upload-artifact/releases/tag/v7.0.1)

##### What's Changed

- Update the readme with direct upload details by [@danwkennedy](https://github.com/danwkennedy) in [#795](actions/upload-artifact#795)
- Readme: bump all the example versions to v7 by [@danwkennedy](https://github.com/danwkennedy) in [#796](actions/upload-artifact#796)
- Include changes in typespec/ts-http-runtime 0.3.5 by [@yacaovsnc](https://github.com/yacaovsnc) in [#797](actions/upload-artifact#797)

**Full Changelog**: <actions/upload-artifact@v7...v7.0.1>

---
##### [\`v7.0.0\`](https://github.com/actions/upload-artifact/releases/tag/v7.0.0)

#### v7 What's new

##### Direct Uploads

Adds support for uploading single files directly (unzipped). Callers can set the new `archive` parameter to `false` to skip zipping the file during upload. Right now, we only support single files. The action will fail if the glob passed resolves to multiple files. The `name` parameter is also ignored with this setting. Instead, the name of the artifact will be the name of the uploaded file.

##### ESM

To support new versions of the `@actions/*` packages, we've upgraded the package to ESM.

#### What's Changed

- Add proxy integration test by [@Link-](https://github.com/Link-) in [#754](actions/upload-artifact#754)
- Upgrade the module to ESM and bump dependencies by [@danwkennedy](https://github.com/danwkennedy) in [#762](actions/upload-artifact#762)
- Support direct file uploads by [@danwkennedy](https://github.com/danwkennedy) in [#764](actions/upload-artifact#764)

#### New Contributors

- [@Link-](https://github.com/Link-) made their first contribution in [#754](actions/upload-artifact#754)

**Full Changelog**: <actions/upload-artifact@v6...v7.0.0>

---
##### [\`v6.0.0\`](actions/upload-artifact@v5.0.0...v6.0.0)


---
##### [\`v5.0.0\`](actions/upload-artifact@v4.6.2...v5.0.0)
onap-github pushed a commit to onap/portal-ng-ui that referenced this pull request Apr 22, 2026
Bumps actions/upload-artifact from 6.0.0 to 7.0.1.
## Release notes

Sourced from actions/upload-artifact's releases.

v7.0.1
What's Changed

Update the readme with direct upload details by @​danwkennedy in actions/upload-artifact#795
Readme: bump all the example versions to v7 by @​danwkennedy in actions/upload-artifact#796
Include changes in typespec/ts-http-runtime 0.3.5 by @​yacaovsnc in actions/upload-artifact#797

Full Changelog: actions/upload-artifact@v7...v7.0.1
v7.0.0
v7 What's new
Direct Uploads
Adds support for uploading single files directly (unzipped). Callers can set the new archive parameter to false to skip zipping the file during upload. Right now, we only support single files. The action will fail if the glob passed resolves to multiple files. The name parameter is also ignored with this setting. Instead, the name of the artifact will be the name of the uploaded file.
ESM
To support new versions of the @actions/* packages, we've upgraded the package to ESM.
What's Changed

Add proxy integration test by @​Link- in actions/upload-artifact#754
Upgrade the module to ESM and bump dependencies by @​danwkennedy in actions/upload-artifact#762
Support direct file uploads by @​danwkennedy in actions/upload-artifact#764

New Contributors

@​Link- made their first contribution in actions/upload-artifact#754

Full Changelog: actions/upload-artifact@v6...v7.0.0

## Commits

043fb46 Merge pull request #797 from actions/yacaovsnc/update-dependency
634250c Include changes in typespec/ts-http-runtime 0.3.5
e454baa Readme: bump all the example versions to v7 (#796)
74fad66 Update the readme with direct upload details (#795)
bbbca2d Support direct file uploads (#764)
589182c Upgrade the module to ESM and bump dependencies (#762)
47309c9 Merge pull request #754 from actions/Link-/add-proxy-integration-tests
02a8460 Add proxy integration test
See full diff in compare view

![Dependabot compatibility score](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Issue-ID: CIMAN-33
Signed-off-by: dependabot[bot] <support@github.com>
Change-Id: I78b5bf8bd3e98ae6b8b92f5be018407e3ee6cb98
GitHub-PR: #181
GitHub-Hash: 2d2b0a53cb03bf7f
Signed-off-by: onap.gh2gerrit <releng+onap-gh2gerrit@linuxfoundation.org>
renovate Bot added a commit to sdwilsh/sOS that referenced this pull request Apr 29, 2026
##### [\`v7.0.1\`](https://github.com/actions/upload-artifact/releases/tag/v7.0.1)

##### What's Changed

- Update the readme with direct upload details by [@danwkennedy](https://github.com/danwkennedy) in [#795](actions/upload-artifact#795)
- Readme: bump all the example versions to v7 by [@danwkennedy](https://github.com/danwkennedy) in [#796](actions/upload-artifact#796)
- Include changes in typespec/ts-http-runtime 0.3.5 by [@yacaovsnc](https://github.com/yacaovsnc) in [#797](actions/upload-artifact#797)

**Full Changelog**: <actions/upload-artifact@v7...v7.0.1>

---
##### [\`v7.0.0\`](https://github.com/actions/upload-artifact/releases/tag/v7.0.0)

#### v7 What's new

##### Direct Uploads

Adds support for uploading single files directly (unzipped). Callers can set the new `archive` parameter to `false` to skip zipping the file during upload. Right now, we only support single files. The action will fail if the glob passed resolves to multiple files. The `name` parameter is also ignored with this setting. Instead, the name of the artifact will be the name of the uploaded file.

##### ESM

To support new versions of the `@actions/*` packages, we've upgraded the package to ESM.

#### What's Changed

- Add proxy integration test by [@Link-](https://github.com/Link-) in [#754](actions/upload-artifact#754)
- Upgrade the module to ESM and bump dependencies by [@danwkennedy](https://github.com/danwkennedy) in [#762](actions/upload-artifact#762)
- Support direct file uploads by [@danwkennedy](https://github.com/danwkennedy) in [#764](actions/upload-artifact#764)

#### New Contributors

- [@Link-](https://github.com/Link-) made their first contribution in [#754](actions/upload-artifact#754)

**Full Changelog**: <actions/upload-artifact@v6...v7.0.0>

---
##### [\`v7\`](actions/upload-artifact@v6...v7)


---
##### [\`v6\`](actions/upload-artifact@v5...v6)


---
##### [\`v6.0.0\`](actions/upload-artifact@v5.0.0...v6.0.0)


---
##### [\`v5\`](actions/upload-artifact@v4...v5)


---
##### [\`v5.0.0\`](actions/upload-artifact@v4.6.2...v5.0.0)


---
##### [\`v4.6.2\`](https://github.com/actions/upload-artifact/releases/tag/v4.6.2)

#### What's Changed

- Update to use artifact 2.3.2 package & prepare for new upload-artifact release by [@salmanmkc](https://github.com/salmanmkc) in [#685](actions/upload-artifact#685)

#### New Contributors

- [@salmanmkc](https://github.com/salmanmkc) made their first contribution in [#685](actions/upload-artifact#685)

**Full Changelog**: <actions/upload-artifact@v4...v4.6.2>

---
##### [\`v4.6.1\`](https://github.com/actions/upload-artifact/releases/tag/v4.6.1)

#### What's Changed

- Update to use artifact 2.2.2 package by [@yacaovsnc](https://github.com/yacaovsnc) in [#673](actions/upload-artifact#673)

**Full Changelog**: <actions/upload-artifact@v4...v4.6.1>

---
##### [\`v4.6.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.6.0)

#### What's Changed

- Expose env vars to control concurrency and timeout by [@yacaovsnc](https://github.com/yacaovsnc) in [#662](actions/upload-artifact#662)

**Full Changelog**: <actions/upload-artifact@v4...v4.6.0>

---
##### [\`v4.5.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.5.0)

#### What's Changed

- fix: deprecated `Node.js` version in action by [@hamirmahal](https://github.com/hamirmahal) in [#578](actions/upload-artifact#578)
- Add new `artifact-digest` output by [@bdehamer](https://github.com/bdehamer) in [#656](actions/upload-artifact#656)

#### New Contributors

- [@hamirmahal](https://github.com/hamirmahal) made their first contribution in [#578](actions/upload-artifact#578)
- [@bdehamer](https://github.com/bdehamer) made their first contribution in [#656](actions/upload-artifact#656)

**Full Changelog**: <actions/upload-artifact@v4.4.3...v4.5.0>

---
##### [\`v4.4.3\`](https://github.com/actions/upload-artifact/releases/tag/v4.4.3)

#### What's Changed

- Undo indirect dependency updates from [#627](actions/upload-artifact#627) by [@joshmgross](https://github.com/joshmgross) in [#632](actions/upload-artifact#632)

**Full Changelog**: <actions/upload-artifact@v4.4.2...v4.4.3>

---
##### [\`v4.4.2\`](https://github.com/actions/upload-artifact/releases/tag/v4.4.2)

#### What's Changed

- Bump `@actions/artifact` to 2.1.11 by [@robherley](https://github.com/robherley) in [#627](actions/upload-artifact#627)
  - Includes fix for relative symlinks not resolving properly

**Full Changelog**: <actions/upload-artifact@v4.4.1...v4.4.2>

---
##### [\`v4.4.1\`](https://github.com/actions/upload-artifact/releases/tag/v4.4.1)

#### What's Changed

- Add a section about hidden files by [@joshmgross](https://github.com/joshmgross) in [#607](actions/upload-artifact#607)
- Add workflow file for publishing releases to immutable action package by [@Jcambass](https://github.com/Jcambass) in [#621](actions/upload-artifact#621)
- Update [@actions/artifact](https://github.com/actions/artifact) to latest version, includes symlink and timeout fixes by [@robherley](https://github.com/robherley) in [#625](actions/upload-artifact#625)

#### New Contributors

- [@Jcambass](https://github.com/Jcambass) made their first contribution in [#621](actions/upload-artifact#621)

**Full Changelog**: <actions/upload-artifact@v4.4.0...v4.4.1>

---
##### [\`v4.4.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.4.0)

#### Notice: Breaking Changes ⚠️

We will no longer include hidden files and folders by default in the `upload-artifact` action of this version. This reduces the risk that credentials are accidentally uploaded into artifacts. Customers who need to continue to upload these files can use a new option, `include-hidden-files`, to continue to do so.

See ["Notice of upcoming deprecations and breaking changes in GitHub Actions runners"](https://github.blog/changelog/2024-08-19-notice-of-upcoming-deprecations-and-breaking-changes-in-github-actions-runners/) changelog and [this issue](actions/upload-artifact#602) for more details.

#### What's Changed

- Exclude hidden files by default by [@joshmgross](https://github.com/joshmgross) in [#598](actions/upload-artifact#598)

**Full Changelog**: <actions/upload-artifact@v4.3.6...v4.4.0>

---
##### [\`v4.3.6\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.6)

#### What's Changed

- Revert to [@actions/artifact](https://github.com/actions/artifact) 2.1.8 by [@robherley](https://github.com/robherley) in [#594](actions/upload-artifact#594)

**Full Changelog**: <actions/upload-artifact@v4...v4.3.6>

---
##### [\`v4.3.5\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.5)

#### What's Changed

- Bump [@actions/artifact](https://github.com/actions/artifact) to v2.1.9 by [@robherley](https://github.com/robherley) in [#588](actions/upload-artifact#588)
  - Fixed artifact upload chunk timeout logic [#1774](actions/toolkit#1774)
  - Use lazy stream to prevent issues with open file limits [#1771](actions/toolkit#1771)

**Full Changelog**: <actions/upload-artifact@v4.3.4...v4.3.5>

---
##### [\`v4.3.4\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.4)

#### What's Changed

- Update [@actions/artifact](https://github.com/actions/artifact) version, bump dependencies by [@robherley](https://github.com/robherley) in [#584](actions/upload-artifact#584)

**Full Changelog**: <actions/upload-artifact@v4.3.3...v4.3.4>

---
##### [\`v4.3.3\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.3)

#### What's Changed

- updating `@actions/artifact` dependency to v2.1.6 by [@eggyhead](https://github.com/eggyhead) in [#565](actions/upload-artifact#565)

**Full Changelog**: <actions/upload-artifact@v4.3.2...v4.3.3>

---
##### [\`v4.3.2\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.2)

#### What's Changed

- Update release-new-action-version.yml by [@konradpabjan](https://github.com/konradpabjan) in [#516](actions/upload-artifact#516)
- Minor fix to the migration readme by [@andrewakim](https://github.com/andrewakim) in [#523](actions/upload-artifact#523)
- Update readme with v3/v2/v1 deprecation notice by [@robherley](https://github.com/robherley) in [#561](actions/upload-artifact#561)
- updating `@actions/artifact` dependency to v2.1.5 and `@actions/core` to v1.0.1 by [@eggyhead](https://github.com/eggyhead) in [#562](actions/upload-artifact#562)

#### New Contributors

- [@andrewakim](https://github.com/andrewakim) made their first contribution in [#523](actions/upload-artifact#523)

**Full Changelog**: <actions/upload-artifact@v4.3.1...v4.3.2>

---
##### [\`v4.3.1\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.1)

- Bump [@actions/artifacts](https://github.com/actions/artifacts) to latest version to include [updated GHES host check](actions/toolkit#1648)

---
##### [\`v4.3.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.3.0)

#### What's Changed

- Reorganize upload code in prep for merge logic & add more tests by [@robherley](https://github.com/robherley) in [#504](actions/upload-artifact#504)
- Add sub-action to merge artifacts by [@robherley](https://github.com/robherley) in [#505](actions/upload-artifact#505)

**Full Changelog**: <actions/upload-artifact@v4...v4.3.0>

---
##### [\`v4.2.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.2.0)

#### What's Changed

- Ability to overwrite an Artifact by [@robherley](https://github.com/robherley) in [#501](actions/upload-artifact#501)

**Full Changelog**: <actions/upload-artifact@v4...v4.2.0>

---
##### [\`v4.1.0\`](https://github.com/actions/upload-artifact/releases/tag/v4.1.0)

#### What's Changed

- Add migrations docs by [@robherley](https://github.com/robherley) in [#482](actions/upload-artifact#482)
- Update README.md by [@samuelwine](https://github.com/samuelwine) in [#492](actions/upload-artifact#492)
- Support artifact-url output by [@konradpabjan](https://github.com/konradpabjan) in [#496](actions/upload-artifact#496)
- Update readme to reflect new 500 artifact per job limit by [@robherley](https://github.com/robherley) in [#497](actions/upload-artifact#497)

#### New Contributors

- [@samuelwine](https://github.com/samuelwine) made their first contribution in [#492](actions/upload-artifact#492)

**Full Changelog**: <actions/upload-artifact@v4...v4.1.0>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants