Skip to content

Commit

Permalink
build(release): 1.6.4 [skip ci]
Browse files Browse the repository at this point in the history
## [1.6.4](v1.6.3...v1.6.4) (2024-01-19)

### Bug Fixes

* **revocation:** avoid revoking expired tokens and fail gracefully ([#95](#95)) ([0c01407](0c01407)), closes [#72](#72)
  • Loading branch information
semantic-release-bot committed Jan 19, 2024
1 parent 0c01407 commit c4fa18d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/post.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -3005,7 +3005,7 @@ async function post(core2, request2) {
}
const expiresAt = core2.getState("expiresAt");
if (expiresAt && tokenExpiresIn(expiresAt) < 0) {
core2.info("Token already expired");
core2.info("Token expired, skipping token revocation");
return;
}
try {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "create-github-app-token",
"private": true,
"type": "module",
"version": "1.6.3",
"version": "1.6.4",
"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=node20.0.0",
Expand Down

0 comments on commit c4fa18d

Please sign in to comment.