From d400084c451fa94cb8392553d58863d2a2fba09c Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 4 Oct 2023 05:29:18 +0000 Subject: [PATCH] build(release): 1.3.0 [skip ci] # [1.3.0](https://github.com/actions/create-github-app-token/compare/v1.2.2...v1.3.0) (2023-10-04) ### Features * support tokens scoped to multiple repositories within organization ([#46](https://github.com/actions/create-github-app-token/issues/46)) ([20fd863](https://github.com/actions/create-github-app-token/commit/20fd86373fdcbeffde8b73b17ebb3a7a62c6c407)) --- dist/main.cjs | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/main.cjs b/dist/main.cjs index 77ea74a..dca6e04 100644 --- a/dist/main.cjs +++ b/dist/main.cjs @@ -10080,8 +10080,8 @@ async function main(appId2, privateKey2, owner2, repositories2, core2, createApp installationId: response.data.id }); } - core2.setOutput("token", authentication.token); core2.setSecret(authentication.token); + core2.setOutput("token", authentication.token); core2.saveState("token", authentication.token); } diff --git a/package.json b/package.json index 6dd67c2..ee24969 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "create-github-app-token", "private": true, "type": "module", - "version": "1.2.2", + "version": "1.3.0", "description": "GitHub Action for creating a GitHub App Installation Access Token", "scripts": { "build": "esbuild main.js post.js --bundle --outdir=dist --out-extension:.js=.cjs --platform=node --target=node16.16",