Update CHANGELOG

This commit is contained in:
CrazyMax 2021-09-05 01:29:51 +02:00
parent a8573c08ce
commit 8c43807e82
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7
3 changed files with 19 additions and 5 deletions

View file

@ -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)

View file

@ -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 }}

View file

@ -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: