Skip to content

Commit 75233f2

Browse files
authored
Merge branch 'main' into master
2 parents 0f33aae + b960e81 commit 75233f2

File tree

8 files changed

+161
-114
lines changed

8 files changed

+161
-114
lines changed

.github/dependabot.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
version: 2
2+
updates:
3+
# Go-Module Updates
4+
- package-ecosystem: "gomod"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"
8+
open-pull-requests-limit: 5
9+
labels:
10+
- "dependencies"
11+
- "go"
12+
13+
# GitHub Actions Updates
14+
- package-ecosystem: "github-actions"
15+
directory: "/.github/workflows/"
16+
schedule:
17+
interval: "weekly"
18+
open-pull-requests-limit: 5
19+
labels:
20+
- "dependencies"
21+
- "github-actions"
22+
23+
# Gradle (Java) Updates
24+
- package-ecosystem: "gradle"
25+
directory: "/custom-user-federation-example/"
26+
schedule:
27+
interval: "weekly"
28+
open-pull-requests-limit: 5
29+
labels:
30+
- "dependencies"
31+
- "java"

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- name: Wait for acceptance tests
1414
id: wait
15-
uses: "WyriHaximus/[email protected]"
15+
uses: "WyriHaximus/github-action-wait-for-status@a0d59308face45c8229ad5aef809d6df5a0c7620" # version v1.8.0
1616
with:
1717
ignoreActions: Wait for acceptance tests
1818
checkInterval: 30
@@ -38,7 +38,7 @@ jobs:
3838

3939
- name: Import GPG key
4040
id: import_gpg
41-
uses: crazy-max/ghaction-import-gpg@v6
41+
uses: crazy-max/ghaction-import-gpg@cb9bde2e2525e640591a934b1fd28eef1dcaf5e5 # version v6.2.0
4242
with:
4343
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
4444
passphrase: ${{ secrets.GPG_PASSPHRASE }}
@@ -58,7 +58,7 @@ jobs:
5858
echo "name=NOTES::${tmp}/release-notes.md" >> $GITHUB_OUTPUT
5959
6060
- name: GoReleaser
61-
uses: goreleaser/goreleaser-action@v6
61+
uses: goreleaser/goreleaser-action@90a3faa9d0182683851fbfa97ca1a2cb983bfca3 # version v6.2.1
6262
with:
6363
args: release --clean --release-notes=${{ steps.build-release-notes.outputs.NOTES }}
6464
env:

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
strategy:
5353
matrix:
5454
keycloak-version:
55-
- '26.1.3'
55+
- '26.1.4'
5656
- '26.0.8'
5757
- '25.0.6'
5858
- '24.0.5'
@@ -73,20 +73,20 @@ jobs:
7373
cache: true
7474

7575
- name: Setup Terraform
76-
uses: hashicorp/setup-terraform@v3
76+
uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # version v3.1.2
7777
with:
7878
terraform_wrapper: false
7979
terraform_version: 1.11.1
8080

8181
- name: Setup Gradle
82-
uses: gradle/actions/setup-gradle@v3
82+
uses: gradle/actions/setup-gradle@94baf225fe0a508e581a564467443d0e2379123b # version v4.3.0
8383
- name: Build user-federation-example with Gradle
8484
run: make user-federation-example
8585

8686
- name: Start Keycloak Container
8787
run: |
8888
MOUNT_FEDERATION_EXAMPLE_VOLUME=""
89-
if [[ "${{ matrix.keycloak-version }}" == "26.1.3" ]]; then
89+
if [[ "${{ matrix.keycloak-version }}" == "26.1.4" ]]; then
9090
MOUNT_FEDERATION_EXAMPLE_VOLUME="-v $PWD/custom-user-federation-example/build/libs/custom-user-federation-example-all.jar:/opt/keycloak/providers/custom-user-federation-example-all.jar:z"
9191
fi
9292

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ This provider will officially support the latest three major versions of Keycloa
4848

4949
The following versions are used when running acceptance tests in CI:
5050

51-
- 26.1.3 (latest)
51+
- 26.1.4 (latest)
5252
- 26.0.8
5353
- 25.0.6
5454
- 24.0.5

custom-user-federation-example/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
plugins {
2-
id 'org.jetbrains.kotlin.jvm' version '2.0.20'
3-
id 'com.gradleup.shadow' version '8.3.0'
2+
id 'org.jetbrains.kotlin.jvm' version '2.1.20'
3+
id 'com.gradleup.shadow' version '8.3.6'
44
id 'java-library'
55
}
66

77
ext {
8-
keycloakVersion = '26.1.3'
8+
keycloakVersion = '26.1.4'
99
}
1010

1111
dependencies {

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414
environment:
1515
LDAP_PORT_NUMBER: 389
1616
keycloak:
17-
image: quay.io/keycloak/keycloak:26.1.3
17+
image: quay.io/keycloak/keycloak:26.1.4
1818
command: --verbose start-dev --features=preview
1919
depends_on:
2020
- postgres

go.mod

Lines changed: 32 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -3,60 +3,61 @@ module github.com/keycloak/terraform-provider-keycloak
33
require (
44
dario.cat/mergo v1.0.1
55
github.com/hashicorp/errwrap v1.1.0
6-
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320
6+
github.com/hashicorp/go-cty v1.5.0
77
github.com/hashicorp/go-retryablehttp v0.7.7
88
github.com/hashicorp/go-version v1.7.0
99
github.com/hashicorp/terraform-plugin-log v0.9.0
10-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.35.0
11-
golang.org/x/net v0.36.0
10+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.36.1
11+
golang.org/x/net v0.37.0
1212
)
1313

1414
require (
15-
github.com/ProtonMail/go-crypto v1.1.0-alpha.2 // indirect
16-
github.com/agext/levenshtein v1.2.2 // indirect
15+
github.com/ProtonMail/go-crypto v1.1.6 // indirect
16+
github.com/agext/levenshtein v1.2.3 // indirect
1717
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
18-
github.com/cloudflare/circl v1.3.7 // indirect
19-
github.com/fatih/color v1.16.0 // indirect
18+
github.com/cloudflare/circl v1.6.0 // indirect
19+
github.com/fatih/color v1.18.0 // indirect
2020
github.com/golang/protobuf v1.5.4 // indirect
21-
github.com/google/go-cmp v0.6.0 // indirect
21+
github.com/google/go-cmp v0.7.0 // indirect
2222
github.com/hashicorp/go-checkpoint v0.5.0 // indirect
2323
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
2424
github.com/hashicorp/go-hclog v1.6.3 // indirect
2525
github.com/hashicorp/go-multierror v1.1.1 // indirect
26-
github.com/hashicorp/go-plugin v1.6.2 // indirect
26+
github.com/hashicorp/go-plugin v1.6.3 // indirect
2727
github.com/hashicorp/go-uuid v1.0.3 // indirect
28-
github.com/hashicorp/hc-install v0.9.0 // indirect
29-
github.com/hashicorp/hcl/v2 v2.22.0 // indirect
28+
github.com/hashicorp/hc-install v0.9.1 // indirect
29+
github.com/hashicorp/hcl/v2 v2.23.0 // indirect
3030
github.com/hashicorp/logutils v1.0.0 // indirect
31-
github.com/hashicorp/terraform-exec v0.21.0 // indirect
32-
github.com/hashicorp/terraform-json v0.23.0 // indirect
33-
github.com/hashicorp/terraform-plugin-go v0.25.0 // indirect
34-
github.com/hashicorp/terraform-registry-address v0.2.3 // indirect
31+
github.com/hashicorp/terraform-exec v0.22.0 // indirect
32+
github.com/hashicorp/terraform-json v0.24.0 // indirect
33+
github.com/hashicorp/terraform-plugin-go v0.26.0 // indirect
34+
github.com/hashicorp/terraform-registry-address v0.2.4 // indirect
3535
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
36-
github.com/hashicorp/yamux v0.1.1 // indirect
37-
github.com/mattn/go-colorable v0.1.13 // indirect
36+
github.com/hashicorp/yamux v0.1.2 // indirect
37+
github.com/mattn/go-colorable v0.1.14 // indirect
3838
github.com/mattn/go-isatty v0.0.20 // indirect
3939
github.com/mitchellh/copystructure v1.2.0 // indirect
4040
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
41-
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
41+
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
4242
github.com/mitchellh/mapstructure v1.5.0 // indirect
4343
github.com/mitchellh/reflectwalk v1.0.2 // indirect
44-
github.com/oklog/run v1.0.0 // indirect
44+
github.com/oklog/run v1.1.0 // indirect
4545
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
4646
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
4747
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
48-
github.com/zclconf/go-cty v1.15.0 // indirect
49-
golang.org/x/crypto v0.35.0 // indirect
50-
golang.org/x/mod v0.21.0 // indirect
51-
golang.org/x/sync v0.11.0 // indirect
52-
golang.org/x/sys v0.30.0 // indirect
53-
golang.org/x/text v0.22.0 // indirect
54-
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
48+
github.com/zclconf/go-cty v1.16.2 // indirect
49+
golang.org/x/crypto v0.36.0 // indirect
50+
golang.org/x/mod v0.24.0 // indirect
51+
golang.org/x/sync v0.12.0 // indirect
52+
golang.org/x/sys v0.31.0 // indirect
53+
golang.org/x/text v0.23.0 // indirect
54+
golang.org/x/tools v0.31.0 // indirect
5555
google.golang.org/appengine v1.6.8 // indirect
56-
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
57-
google.golang.org/grpc v1.67.1 // indirect
58-
google.golang.org/protobuf v1.35.1 // indirect
56+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250313205543-e70fdf4c4cb4 // indirect
57+
google.golang.org/grpc v1.71.0 // indirect
58+
google.golang.org/protobuf v1.36.5 // indirect
5959
)
6060

61-
go 1.22.0
62-
toolchain go1.23.7
61+
go 1.23.0
62+
63+
toolchain go1.24.1

0 commit comments

Comments
 (0)