Skip to content

Commit 8c43807

Browse files
committed
Update CHANGELOG
1 parent a8573c0 commit 8c43807

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## 4.0.0 (2021/09/05)
4+
5+
* OpenPGP.js v5 (#78)
6+
* POSIX-compliant inputs names (#109)
7+
* Rename `gpg-private-key` input `gpg_private_key`
8+
* Rename `git-config-global` input `git_config_global`
9+
* Rename `git-user-signingkey` input `git_user_signingkey`
10+
* Rename `git-commit-gpgsign` input `git_commit_gpgsign`
11+
* Rename `git-tag-gpgsign` input `git_tag_gpgsign`
12+
* Rename `git-push-gpgsign` input `git_push_gpgsign`
13+
* Rename `git-committer-name` input `git_committer_name`
14+
* Rename `git-committer-email` input `git_committer_email`
15+
* Bump @actions/core from 1.4.0 to 1.5.0 (#106)
16+
317
## 3.2.0 (2021/08/10)
418

519
* Add `git-config-global` input (#103)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
-
7878
name: Import GPG key
7979
id: import_gpg
80-
uses: crazy-max/ghaction-import-gpg@v3
80+
uses: crazy-max/ghaction-import-gpg@v4
8181
with:
8282
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
8383
passphrase: ${{ secrets.PASSPHRASE }}
@@ -108,7 +108,7 @@ jobs:
108108
uses: actions/checkout@v2
109109
-
110110
name: Import GPG key
111-
uses: crazy-max/ghaction-import-gpg@v3
111+
uses: crazy-max/ghaction-import-gpg@v4
112112
with:
113113
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
114114
passphrase: ${{ secrets.PASSPHRASE }}

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ inputs:
2222
default: 'false'
2323
required: false
2424
git_commit_gpgsign:
25-
description: 'Sign all commits automatically. git_user_signingkey needs to be enabled'
25+
description: 'Sign all commits automatically'
2626
default: 'false'
2727
required: false
2828
git_tag_gpgsign:
29-
description: 'Sign all tags automatically. git_user_signingkey needs to be enabled'
29+
description: 'Sign all tags automatically'
3030
default: 'false'
3131
required: false
3232
git_push_gpgsign:
33-
description: 'Sign all pushes automatically. git_user_signingkey needs to be enabled'
33+
description: 'Sign all pushes automatically'
3434
default: 'if-asked'
3535
required: false
3636
git_committer_name:

0 commit comments

Comments
 (0)