From f0a363293746fadf2c0fd8373676ef77c2e6d4eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ebbinghaus?= Date: Sun, 10 Apr 2022 18:07:42 +0200 Subject: [PATCH] Set the GitHub token as default --- action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/action.yml b/action.yml index 33f457d..354e794 100644 --- a/action.yml +++ b/action.yml @@ -11,6 +11,7 @@ inputs: description: 'The boot-clj version to make available on the path.' tools-deps: description: '[DEPRECATED] The tools deps version to make available on the path.' + deprecationMessage: 'Use the `cli` input instead' cli: description: 'Clojure CLI version to make available on the path.' bb: @@ -19,6 +20,8 @@ inputs: description: >+ To fix rate limit errors, provide `secrets.GITHUB_TOKEN` value to this field. More info: https://docs.github.com/en/actions/security-guides/automatic-token-authentication + default: ${{ github.token }} + required: false runs: using: 'node12' main: 'dist/index.js'