mirror of
https://github.com/crazy-max/ghaction-import-gpg.git
synced 2024-11-08 22:43:33 -05:00
Update CHANGELOG
This commit is contained in:
parent
a8573c08ce
commit
8c43807e82
3 changed files with 19 additions and 5 deletions
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -1,5 +1,19 @@
|
||||||
# Changelog
|
# 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)
|
## 3.2.0 (2021/08/10)
|
||||||
|
|
||||||
* Add `git-config-global` input (#103)
|
* Add `git-config-global` input (#103)
|
||||||
|
|
|
@ -77,7 +77,7 @@ jobs:
|
||||||
-
|
-
|
||||||
name: Import GPG key
|
name: Import GPG key
|
||||||
id: import_gpg
|
id: import_gpg
|
||||||
uses: crazy-max/ghaction-import-gpg@v3
|
uses: crazy-max/ghaction-import-gpg@v4
|
||||||
with:
|
with:
|
||||||
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
||||||
passphrase: ${{ secrets.PASSPHRASE }}
|
passphrase: ${{ secrets.PASSPHRASE }}
|
||||||
|
@ -108,7 +108,7 @@ jobs:
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
-
|
-
|
||||||
name: Import GPG key
|
name: Import GPG key
|
||||||
uses: crazy-max/ghaction-import-gpg@v3
|
uses: crazy-max/ghaction-import-gpg@v4
|
||||||
with:
|
with:
|
||||||
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
||||||
passphrase: ${{ secrets.PASSPHRASE }}
|
passphrase: ${{ secrets.PASSPHRASE }}
|
||||||
|
|
|
@ -22,15 +22,15 @@ inputs:
|
||||||
default: 'false'
|
default: 'false'
|
||||||
required: false
|
required: false
|
||||||
git_commit_gpgsign:
|
git_commit_gpgsign:
|
||||||
description: 'Sign all commits automatically. git_user_signingkey needs to be enabled'
|
description: 'Sign all commits automatically'
|
||||||
default: 'false'
|
default: 'false'
|
||||||
required: false
|
required: false
|
||||||
git_tag_gpgsign:
|
git_tag_gpgsign:
|
||||||
description: 'Sign all tags automatically. git_user_signingkey needs to be enabled'
|
description: 'Sign all tags automatically'
|
||||||
default: 'false'
|
default: 'false'
|
||||||
required: false
|
required: false
|
||||||
git_push_gpgsign:
|
git_push_gpgsign:
|
||||||
description: 'Sign all pushes automatically. git_user_signingkey needs to be enabled'
|
description: 'Sign all pushes automatically'
|
||||||
default: 'if-asked'
|
default: 'if-asked'
|
||||||
required: false
|
required: false
|
||||||
git_committer_name:
|
git_committer_name:
|
||||||
|
|
Loading…
Reference in a new issue