Skip to content

Commit 1211823

Browse files
authored
Replaced references to mrparkers with keycloak (#1017)
Updated goreleaser config Replace outdated goreleaser --rm-dist config Added release permissions Adapted example to work with bitnami/openldap Signed-off-by: Sebastian Schuster <[email protected]>
1 parent 9d2d817 commit 1211823

File tree

226 files changed

+258
-256
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

226 files changed

+258
-256
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
status: steps.wait.outputs.status
2323

2424
release:
25+
permissions: write-all
2526
needs:
2627
- wait
2728
runs-on: ubuntu-latest
@@ -52,15 +53,14 @@ jobs:
5253
releaseDate=$(date '+%B-%-d-%Y' | tr '[:upper:]' '[:lower:]')
5354
releaseVersion=$(echo ${{ steps.get_tag_name.outputs.TAG }} | tr -d '.')
5455
tmp=$(mktemp -d)
55-
echo "[Release Notes](https://github.com/mrparkers/terraform-provider-keycloak/blob/master/CHANGELOG.md#${releaseVersion}-${releaseDate})" > ${tmp}/release-notes.md
56+
echo "[Release Notes](https://github.com/keycloak/terraform-provider-keycloak/blob/master/CHANGELOG.md#${releaseVersion}-${releaseDate})" > ${tmp}/release-notes.md
5657
cat ${tmp}/release-notes.md
5758
echo ::set-output name=NOTES::${tmp}/release-notes.md
5859
5960
- name: GoReleaser
60-
uses: goreleaser/goreleaser-action@v2
61+
uses: goreleaser/goreleaser-action@v6
6162
with:
62-
version: v0.179.0
63-
args: release --rm-dist --release-notes=${{ steps.build-release-notes.outputs.NOTES }}
63+
args: release --clean --release-notes=${{ steps.build-release-notes.outputs.NOTES }}
6464
env:
6565
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6666
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Terraform provider for [Keycloak](https://www.keycloak.org/).
66
77
## Docs
88

9-
All documentation for this provider can now be found on the Terraform Registry: https://registry.terraform.io/providers/mrparkers/keycloak/latest/docs
9+
All documentation for this provider can now be found on the Terraform Registry: https://registry.terraform.io/providers/keycloak/keycloak/latest/docs
1010

1111
## Installation
1212

@@ -16,7 +16,7 @@ This provider can be installed automatically using Terraform >=0.13 by using the
1616
terraform {
1717
required_providers {
1818
keycloak = {
19-
source = "mrparkers/keycloak"
19+
source = "keycloak/keycloak"
2020
version = ">= 4.0.0"
2121
}
2222
}
@@ -50,14 +50,14 @@ The following versions are used when running acceptance tests in CI:
5050
## Releases
5151

5252
This provider uses [GoReleaser](https://goreleaser.com/) to build and publish releases. Each release published to GitHub
53-
contains binary files for Linux, macOS (darwin), and Windows, as configured within the [`.goreleaser.yml`](https://github.com/mrparkers/terraform-provider-keycloak/blob/master/.goreleaser.yml)
53+
contains binary files for Linux, macOS (darwin), and Windows, as configured within the [`.goreleaser.yml`](https://github.com/keycloak/terraform-provider-keycloak/blob/master/.goreleaser.yml)
5454
file.
5555

5656
Each release also contains a `terraform-provider-keycloak_${RELEASE_VERSION}_SHA256SUMS` file, accompanied by a signature
5757
created by a PGP key with the fingerprint `C508 6791 5E11 6CD2`. This key can be found on my Keybase account at https://keybase.io/mrparkers.
5858

59-
You can find the list of releases [here](https://github.com/mrparkers/terraform-provider-keycloak/releases).
60-
You can find the changelog for each version [here](https://github.com/mrparkers/terraform-provider-keycloak/blob/master/CHANGELOG.md).
59+
You can find the list of releases [here](https://github.com/keycloak/terraform-provider-keycloak/releases).
60+
You can find the changelog for each version [here](https://github.com/keycloak/terraform-provider-keycloak/blob/master/CHANGELOG.md).
6161

6262
Note: Prior to v2.0.0, a statically linked build for use within Alpine linux was included with each release. This is no longer
6363
done due to [GoReleaser not supporting CGO](https://goreleaser.com/limitations/cgo/). Instead of using a statically linked,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.mrparkers.keycloak
1+
package com.github.keycloak
22

33
import org.keycloak.events.Event
44
import org.keycloak.events.EventListenerProvider
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.mrparkers.keycloak
1+
package com.github.keycloak
22

33
import org.keycloak.Config
44
import org.keycloak.events.EventListenerProvider
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.mrparkers.keycloak
1+
package com.github.keycloak
22

33
import org.keycloak.broker.oidc.OIDCIdentityProvider
44
import org.keycloak.models.KeycloakSession
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.mrparkers.keycloak
1+
package com.github.keycloak
22

33
import org.keycloak.broker.oidc.OIDCIdentityProviderConfig
44
import org.keycloak.models.IdentityProviderModel
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.mrparkers.keycloak
1+
package com.github.keycloak
22

33
import org.keycloak.broker.oidc.OIDCIdentityProviderConfig
44
import org.keycloak.broker.provider.AbstractIdentityProviderFactory
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.mrparkers.keycloak
1+
package com.github.keycloak
22

33
import org.keycloak.component.ComponentModel
44
import org.keycloak.credential.CredentialInput
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.mrparkers.keycloak
1+
package com.github.keycloak
22

33
import org.keycloak.component.ComponentModel
44
import org.keycloak.models.KeycloakSession
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
com.github.mrparkers.keycloak.CustomIdentityProviderFactory
1+
com.github.keycloak.CustomIdentityProviderFactory

0 commit comments

Comments
 (0)