Skip to content

Commit c4fa18d

Browse files
build(release): 1.6.4 [skip ci]
## [1.6.4](actions/create-github-app-token@v1.6.3...v1.6.4) (2024-01-19) ### Bug Fixes * **revocation:** avoid revoking expired tokens and fail gracefully ([actions#95](actions#95)) ([0c01407](actions@0c01407)), closes [actions#72](actions#72)
1 parent 0c01407 commit c4fa18d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: dist/post.cjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3005,7 +3005,7 @@ async function post(core2, request2) {
30053005
}
30063006
const expiresAt = core2.getState("expiresAt");
30073007
if (expiresAt && tokenExpiresIn(expiresAt) < 0) {
3008-
core2.info("Token already expired");
3008+
core2.info("Token expired, skipping token revocation");
30093009
return;
30103010
}
30113011
try {

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "create-github-app-token",
33
"private": true,
44
"type": "module",
5-
"version": "1.6.3",
5+
"version": "1.6.4",
66
"description": "GitHub Action for creating a GitHub App Installation Access Token",
77
"scripts": {
88
"build": "esbuild main.js post.js --bundle --outdir=dist --out-extension:.js=.cjs --platform=node --target=node20.0.0",

0 commit comments

Comments
 (0)