read to buffer not string and use non-legacy method to base64

This commit is contained in:
Peter Evans 2024-07-26 12:41:31 +00:00
parent 7c0b09154e
commit 3e7e19f0eb
2 changed files with 2 additions and 2 deletions

View file

@ -327,7 +327,7 @@ export async function createPullRequest(inputs: Inputs): Promise<void> {
core.debug(`Reading contents of file: '${file}'`)
fileChanges.additions!.push({
path: file,
contents: btoa(fs.readFileSync(file, 'utf8'))
contents: fs.readFileSync(file).toString('base64')
})
}