Skip to content

Commit 3f9b5d8

Browse files
authored
Merge pull request #15 from sass/dependabot/github_actions/actions/upload-pages-artifact-4
Bump actions/upload-pages-artifact from 3 to 4
2 parents 244da56 + 6060c10 commit 3f9b5d8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
- run: npm run doc
8989

9090
- name: Upload static files as artifact
91-
uses: actions/upload-pages-artifact@v3
91+
uses: actions/upload-pages-artifact@v4
9292
with: {path: docs}
9393

9494
- id: deployment

lib/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@ export class SyncChildProcess
7171
this.worker.on('error', console.error);
7272

7373
this.stdin = new stream.Writable({
74-
write: (chunk: Buffer, encoding, callback) => {
74+
write: (chunk: Buffer<ArrayBuffer>, encoding, callback) => {
7575
this.port.postMessage(
7676
{
7777
type: 'stdin',
78-
data: chunk as Buffer,
78+
data: chunk,
7979
},
8080
isMarkedAsUntransferable(chunk.buffer) ? undefined : [chunk.buffer],
8181
);

0 commit comments

Comments
 (0)