File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ module terraform-provider-passbolt
22
33go 1.23.0
44
5- toolchain go1.24.1
6-
75require (
86 github.com/hashicorp/terraform-plugin-framework v1.6.1
97 github.com/passbolt/go-passbolt v0.7.2
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments