Skip to content

Commit 2870673

Browse files
authored
Merge pull request #3 from bytesourceoss/fix-registry-address
Fix: provider address to include full registry URL
2 parents 3473a7b + a07a46c commit 2870673

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/test_lint_build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,14 @@ jobs:
1616
id: import_gpg
1717
with:
1818
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
19+
- name: Setup Go
20+
uses: actions/setup-go@v5
21+
with:
22+
go-version: 1.23.0
1923
- name: Test, Lint, & Build # Everything should pass normally before building with GoReleaser
2024
run: |
2125
curl --proto '=https' --tlsv1.2 -fsSL https://static.pantsbuild.org/setup/get-pants.sh | bash
22-
ln -s /root/.local/bin/pants /usr/bin/pants
26+
echo "$HOME/.local/bin" >> $GITHUB_PATH
2327
pants test all
2428
pants lint all
2529
pants package all

go.mod

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ module terraform-provider-passbolt
22

33
go 1.23.0
44

5-
toolchain go1.24.1
6-
75
require (
86
github.com/hashicorp/terraform-plugin-framework v1.6.1
97
github.com/passbolt/go-passbolt v0.7.2

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func main() {
3131
// provider address is used in these tutorials in conjunction with a
3232
// specific Terraform CLI configuration for manual development testing
3333
// of this provider.
34-
Address: "bytesourceoss/passbolt",
34+
Address: "registry.opentofu.org/bytesourceoss/passbolt",
3535
Debug: debug,
3636
}
3737

0 commit comments

Comments
 (0)