Skip to content

Commit

Permalink
Merge branch 'v1' into fix-spotify-shopify-connection-removal
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiught authored Jul 17, 2023
2 parents d2a8b49 + 3525cea commit f272df2
Show file tree
Hide file tree
Showing 263 changed files with 21,355 additions and 33,950 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version-file: go.mod
check-latest: true
Expand All @@ -36,7 +36,7 @@ jobs:
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version-file: go.mod
check-latest: true
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@ jobs:
run: git fetch --prune --unshallow

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version-file: go.mod
check-latest: true
cache: false

- name: Import GPG key
id: import_gpg
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,7 @@ jobs:
steps:
- name: Scan for vulnerabilities in go code
uses: golang/govulncheck-action@v0.2.0
with:
go-version-input: 1.20.6
check-latest: true
cache: false
2 changes: 1 addition & 1 deletion .github/workflows/sweep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version-file: go.mod
check-latest: true
Expand Down
10 changes: 5 additions & 5 deletions MIGRATION_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ automated workflows before upgrading.

The `auth0_global_client` resource and data source were introduced primarily to allow managing the `custom_login_page`
and `custom_login_page_on` attributes in order to manage the custom login page of a tenant. These are now deprecated in
favor of the `auth0_pages` resource.
favor of the `auth0_pages` resource and data source.

To ensure a smooth transition when we eventually remove the capability to manage the custom
login page through the `auth0_global_client`, we recommend proactively migrating to the `auth0_pages` resource.
To ensure a smooth transition when we eventually remove the capability to manage the custom
login page through the `auth0_global_client`, we recommend proactively migrating to the `auth0_pages` resource and data source.
This will help you stay prepared for future changes.

<table>
Expand Down Expand Up @@ -55,7 +55,7 @@ resource "auth0_pages" "my_pages" {
#### Tenant Pages

The `change_password`, `guardian_mfa_page` and `error_page` attributes on the `auth0_tenant` have been deprecated in
favor of managing them with the `auth0_pages` resource.
favor of managing them with the `auth0_pages` resource.

To ensure a smooth transition when we eventually remove the capability to manage these custom Auth0 pages through the
`auth0_tenant` resource, we recommend proactively migrating to the `auth0_pages` resource. This will help you stay
Expand Down Expand Up @@ -151,7 +151,7 @@ resource "auth0_branding" "my_branding" {
colors {
primary = "#0059d6"
page_background = "#000000"
}
}
}
```

Expand Down
Loading

0 comments on commit f272df2

Please sign in to comment.