Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ packages/*/__tests__/_temp/
.DS_Store
*.xar
packages/*/audit.json
.nx/
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
"brace-expansion": "^2.0.2",
"form-data": "^4.0.4",
"uri-js": "npm:uri-js-replace@^1.0.1",
"node-fetch": "^3.3.2"
"node-fetch": "^3.3.2",
"undici": "^7.0.0"
}
}
742 changes: 93 additions & 649 deletions packages/artifact/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/artifact/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.1",
"@actions/http-client": "^2.1.0",
"@azure/core-http": "^3.0.5",
"@azure/core-rest-pipeline": "^1.22.0",
"@azure/storage-blob": "^12.15.0",
"@octokit/core": "^5.2.1",
"@octokit/plugin-request-log": "^1.0.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/artifact/src/internal/upload/blob-upload.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {BlobClient, BlockBlobUploadStreamOptions} from '@azure/storage-blob'
import {TransferProgressEvent} from '@azure/core-http-compat'
import {TransferProgressEvent} from '@azure/core-rest-pipeline'
import {ZipUploadStream} from './zip'
import {
getUploadChunkSize,
Expand Down
8 changes: 8 additions & 0 deletions packages/attest/RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @actions/attest Releases

### 2.2.0

- Update undici to v7 [#TBD](https://github.com/actions/toolkit/pull/TBD)

### 2.1.0

- Add createStorageRecord function [#1977](https://github.com/actions/toolkit/pull/1977)

### 2.0.0

- Add support for Node 24 [#2110](https://github.com/actions/toolkit/pull/2110)
Expand Down
Loading
Loading