Skip to content

Commit 0d76917

Browse files
committed
Fix the release signing process to use RSA
* Terraform Registry does not yet support ed25519 so revert to using the older RSA key that has been used to sign prior releases
1 parent fc513c2 commit 0d76917

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,15 @@ Notable changes between releases.
44

55
## Latest
66

7+
## v0.5.4
8+
9+
* Fix release signing process to use a compatible OpenPGP key algorithm
10+
* Terraform Registry does not support ed25519, sign with the RSA key like in past releases
11+
712
## v0.5.3
813

914
* Maintenance update to bump dependencies
15+
* Skip this release, it was signed with the wrong key
1016

1117
## v0.5.2
1218

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,11 @@ _output/%/terraform-provider-matchbox:
5454

5555
release-sign:
5656
cd _output; sha256sum *.zip > terraform-provider-matchbox_$(SEMVER)_SHA256SUMS
57-
gpg2 --detach-sign _output/terraform-provider-matchbox_$(SEMVER)_SHA256SUMS
57+
gpg --default-key 0x8F515AD1602065C8 --detach-sign _output/terraform-provider-matchbox_$(SEMVER)_SHA256SUMS
5858

5959
release-verify: NAME=_output/terraform-provider-matchbox
6060
release-verify:
61-
gpg2 --verify $(NAME)_$(SEMVER)_SHA256SUMS.sig $(NAME)_$(SEMVER)_SHA256SUMS
62-
61+
gpg --verify $(NAME)_$(SEMVER)_SHA256SUMS.sig $(NAME)_$(SEMVER)_SHA256SUMS
6362

6463
.PHONY: certificates
6564
certificates:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ terraform {
2525
required_providers {
2626
matchbox = {
2727
source = "poseidon/matchbox"
28-
version = "0.5.2"
28+
version = "0.5.4"
2929
}
3030
}
3131
}

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ terraform {
2020
required_providers {
2121
matchbox = {
2222
source = "poseidon/matchbox"
23-
version = "0.5.2"
23+
version = "0.5.4"
2424
}
2525
}
2626
}

0 commit comments

Comments
 (0)