From 8c43807e82148a7bafc633cc9584d04bf54be8d0 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Sun, 5 Sep 2021 01:29:51 +0200 Subject: [PATCH] Update CHANGELOG --- CHANGELOG.md | 14 ++++++++++++++ README.md | 4 ++-- action.yml | 6 +++--- 3 files changed, 19 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ca0e443..c2f85c6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 4.0.0 (2021/09/05) + +* OpenPGP.js v5 (#78) +* POSIX-compliant inputs names (#109) + * Rename `gpg-private-key` input `gpg_private_key` + * Rename `git-config-global` input `git_config_global` + * Rename `git-user-signingkey` input `git_user_signingkey` + * Rename `git-commit-gpgsign` input `git_commit_gpgsign` + * Rename `git-tag-gpgsign` input `git_tag_gpgsign` + * Rename `git-push-gpgsign` input `git_push_gpgsign` + * Rename `git-committer-name` input `git_committer_name` + * Rename `git-committer-email` input `git_committer_email` +* Bump @actions/core from 1.4.0 to 1.5.0 (#106) + ## 3.2.0 (2021/08/10) * Add `git-config-global` input (#103) diff --git a/README.md b/README.md index 96d1b725..d2728337 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ jobs: - name: Import GPG key id: import_gpg - uses: crazy-max/ghaction-import-gpg@v3 + uses: crazy-max/ghaction-import-gpg@v4 with: gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} passphrase: ${{ secrets.PASSPHRASE }} @@ -108,7 +108,7 @@ jobs: uses: actions/checkout@v2 - name: Import GPG key - uses: crazy-max/ghaction-import-gpg@v3 + uses: crazy-max/ghaction-import-gpg@v4 with: gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} passphrase: ${{ secrets.PASSPHRASE }} diff --git a/action.yml b/action.yml index 0b286f0d..452e6ddb 100644 --- a/action.yml +++ b/action.yml @@ -22,15 +22,15 @@ inputs: default: 'false' required: false git_commit_gpgsign: - description: 'Sign all commits automatically. git_user_signingkey needs to be enabled' + description: 'Sign all commits automatically' default: 'false' required: false git_tag_gpgsign: - description: 'Sign all tags automatically. git_user_signingkey needs to be enabled' + description: 'Sign all tags automatically' default: 'false' required: false git_push_gpgsign: - description: 'Sign all pushes automatically. git_user_signingkey needs to be enabled' + description: 'Sign all pushes automatically' default: 'if-asked' required: false git_committer_name: