Skip to content

Commit b35eb9f

Browse files
authored
Small readme fixed and version updates (#1035)
* Small readme fixed and version updates Signed-off-by: Sebastian Schuster <[email protected]> * Adapted ci to run on main instead of master Signed-off-by: Sebastian Schuster <[email protected]> --------- Signed-off-by: Sebastian Schuster <[email protected]>
1 parent 815fa65 commit b35eb9f

File tree

7 files changed

+15
-16
lines changed

7 files changed

+15
-16
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ name: "CodeQL"
1313

1414
on:
1515
push:
16-
branches: [ master ]
16+
branches: [ main ]
1717
pull_request:
1818
# The branches below must be a subset of the branches above
19-
branches: [ master ]
19+
branches: [ main ]
2020
schedule:
2121
- cron: '15 11 * * 0'
2222

.github/workflows/dependency-submission.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Go Dependency Submission
22
on:
33
push:
44
branches:
5-
- master
5+
- main
66

77
permissions:
88
contents: write

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
releaseDate=$(date '+%B-%-d-%Y' | tr '[:upper:]' '[:lower:]')
5454
releaseVersion=$(echo ${{ steps.get_tag_name.outputs.TAG }} | tr -d '.')
5555
tmp=$(mktemp -d)
56-
echo "[Release Notes](https://github.com/keycloak/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/main/CHANGELOG.md#${releaseVersion}-${releaseDate})" > ${tmp}/release-notes.md
5757
cat ${tmp}/release-notes.md
5858
echo ::set-output name=NOTES::${tmp}/release-notes.md
5959

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: test
22
on:
33
push:
44
branches:
5-
- master
5+
- main
66
pull_request:
77
branches:
8-
- master
8+
- main
99

1010
jobs:
1111
verify:
@@ -61,7 +61,7 @@ jobs:
6161
matrix:
6262
keycloak-version:
6363
- '26.0.7'
64-
- '25.0.2'
64+
- '25.0.6'
6565
- '24.0.5'
6666
- '23.0.7'
6767
- '22.0.5'

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ This provider will officially support the latest three major versions of Keycloa
5252
The following versions are used when running acceptance tests in CI:
5353

5454
- 26.0.7 (latest)
55-
- 25.0.2
55+
- 25.0.6
5656
- 24.0.5
5757
- 23.0.7
5858
- 22.0.5
@@ -64,8 +64,7 @@ This provider uses [GoReleaser](https://goreleaser.com/) to build and publish re
6464
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)
6565
file.
6666

67-
Each release also contains a `terraform-provider-keycloak_${RELEASE_VERSION}_SHA256SUMS` file, accompanied by a signature
68-
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.
67+
Each release also contains a `terraform-provider-keycloak_${RELEASE_VERSION}_SHA256SUMS` file that can be used to check integrity.
6968

7069
You can find the list of releases [here](https://github.com/keycloak/terraform-provider-keycloak/releases).
7170
You can find the changelog for each version [here](https://github.com/keycloak/terraform-provider-keycloak/blob/master/CHANGELOG.md).
@@ -76,7 +75,7 @@ build you can use the `linux_amd64` build as long as `libc6-compat` is installed
7675

7776
## Development
7877

79-
This project requires Go 1.19 and Terraform 1.4.1.
78+
This project requires Go 1.22 and Terraform 1.4.1.
8079
This project uses [Go Modules](https://github.com/golang/go/wiki/Modules) for dependency management, which allows this project to exist outside of an existing GOPATH.
8180

8281
After cloning the repository, you can build the project by running `make build`.

makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ build:
1010
CGO_ENABLED=0 go build -trimpath -ldflags "-s -w -X main.version=$(VERSION)" -o terraform-provider-keycloak_$(VERSION)
1111

1212
build-example: build
13-
mkdir -p example/.terraform/plugins/terraform.local/keycloak/keycloak/4.0.0/$(GOOS)_$(GOARCH)
14-
mkdir -p example/terraform.d/plugins/terraform.local/keycloak/keycloak/4.0.0/$(GOOS)_$(GOARCH)
15-
cp terraform-provider-keycloak_* example/.terraform/plugins/terraform.local/keycloak/keycloak/4.0.0/$(GOOS)_$(GOARCH)/
16-
cp terraform-provider-keycloak_* example/terraform.d/plugins/terraform.local/keycloak/keycloak/4.0.0/$(GOOS)_$(GOARCH)/
13+
mkdir -p example/.terraform/plugins/terraform.local/keycloak/keycloak/4.5.0/$(GOOS)_$(GOARCH)
14+
mkdir -p example/terraform.d/plugins/terraform.local/keycloak/keycloak/4.5.0/$(GOOS)_$(GOARCH)
15+
cp terraform-provider-keycloak_* example/.terraform/plugins/terraform.local/keycloak/keycloak/4.5.0/$(GOOS)_$(GOARCH)/
16+
cp terraform-provider-keycloak_* example/terraform.d/plugins/terraform.local/keycloak/keycloak/4.5.0/$(GOOS)_$(GOARCH)/
1717

1818
local: deps
1919
docker compose up --build -d

scripts/create-terraform-client.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
set -xe
3+
set -e
44

55
KEYCLOAK_URL="http://localhost:8080"
66
KEYCLOAK_USER="keycloak"

0 commit comments

Comments
 (0)