Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
crazy-max committed Sep 4, 2021
1 parent a8573c0 commit 8c43807
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 8c43807

Please sign in to comment.