Skip to content

chore: update to latest chainlink-deployments-framework #17629

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/scripts/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ require (
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250506195202-6a3f20db41c6
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049
github.com/smartcontractkit/chainlink-deployments-framework v0.0.13
github.com/smartcontractkit/chainlink-deployments-framework v0.0.14
github.com/smartcontractkit/chainlink-evm v0.0.0-20250506144221-ee990aefea6c
github.com/smartcontractkit/chainlink-testing-framework/lib v1.52.4
github.com/smartcontractkit/libocr v0.0.0-20250408131511-c90716988ee0
Expand Down
4 changes: 2 additions & 2 deletions core/scripts/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1197,8 +1197,8 @@ github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-2025041523564
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0=
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049 h1:7HwYt8rDz1ehTcB28oNipdTZUtV17F2sfkLTLtMJC4c=
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049/go.mod h1:2MggrMtbhqr0u4U2pcYa21lvAtvaeSawjxdIy1ytHWE=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.13 h1:8JNmafFdAHJY4QIcgPOraZpEoxMDbIMRMxlNGivHu6g=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.13/go.mod h1:mL2A8XfX+KipiqgBarPaBxULqVLSJRZ6HYObxFncMEM=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.14 h1:ZIl1lOSPYcQeYzCmkZlsy65K3+isdWRHonlmWxfQcWY=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.14/go.mod h1:mL2A8XfX+KipiqgBarPaBxULqVLSJRZ6HYObxFncMEM=
github.com/smartcontractkit/chainlink-evm v0.0.0-20250506144221-ee990aefea6c h1:1jrQDhZ5NJ6MtXUB1mngguhNTx897p2+WMV5c358GCE=
github.com/smartcontractkit/chainlink-evm v0.0.0-20250506144221-ee990aefea6c/go.mod h1:8QsSYkL3nf3CnRbfpcXPGkxDRc8FuiWo1GiEEZR8b2A=
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 h1:8u9xUrC+yHrTDexOKDd+jrA6LCzFFHeX1G82oj2fsSI=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,10 @@ var DeployAndMintSequence = operations.NewSequence(
semver.MustParse("1.0.0"),
"Deploy LINK token contract, grants mint and mints some amount to same address",
func(b operations.Bundle, deps EthereumDeps, input SqDeployLinkInput) (SqDeployLinkOutput, error) {
linkDeployReport, err := operations.ExecuteOperation(b, DeployLinkOp, deps, operations.EmptyInput{})
linkDeployReport, err := operations.ExecuteOperation(
b, DeployLinkOp, deps, operations.EmptyInput{},
operations.WithRetry[operations.EmptyInput, EthereumDeps](),
)
if err != nil {
return SqDeployLinkOutput{}, err
}
Expand All @@ -86,7 +89,10 @@ var DeployAndMintSequence = operations.NewSequence(
ContractAddress: linkDeployReport.Output,
To: deps.Auth.From,
}
_, err = operations.ExecuteOperation(b, GrantMintOp, deps, grantMintConfig)
_, err = operations.ExecuteOperation(
b, GrantMintOp, deps, grantMintConfig,
operations.WithRetry[GrantMintRoleConfig, EthereumDeps](),
)
if err != nil {
return SqDeployLinkOutput{}, err
}
Expand All @@ -96,7 +102,10 @@ var DeployAndMintSequence = operations.NewSequence(
Amount: input.MintAmount,
To: input.To,
}
_, err = operations.ExecuteOperation(b, MintLinkOp, deps, mintConfig)
_, err = operations.ExecuteOperation(
b, MintLinkOp, deps, mintConfig,
operations.WithRetry[MintLinkConfig, EthereumDeps](),
)
if err != nil {
return SqDeployLinkOutput{}, err
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,8 @@ func (l DisableRetryExampleChangeset) Apply(e deployment.Environment, config ope

operationInput := SuccessFailOperationInput{ShouldFail: true}

// Disable retry for this operation
// If retry was not disable, the operation would be retried for 10 times with exponential backoff.
_, err := operations.ExecuteOperation(e.OperationsBundle, SuccessFailOperation, nil, operationInput,
operations.WithRetryConfig[SuccessFailOperationInput, any](operations.RetryConfig[SuccessFailOperationInput, any]{
DisableRetry: true,
}))
// Retry is disabled by default for this operation
_, err := operations.ExecuteOperation(e.OperationsBundle, SuccessFailOperation, nil, operationInput)
if err != nil {
return deployment.ChangesetOutput{}, err
}
Expand All @@ -61,13 +57,12 @@ func (l UpdateInputExampleChangeset) Apply(e deployment.Environment, config oper
// Retry operation with updated input
// This operation will fail once and then succeed because the input was updated
_, err := operations.ExecuteOperation(e.OperationsBundle, SuccessFailOperation, nil, operationInput,
operations.WithRetryConfig[SuccessFailOperationInput, any](operations.RetryConfig[SuccessFailOperationInput, any]{
InputHook: func(input SuccessFailOperationInput, _ any) SuccessFailOperationInput {
// Update input to false, so it stops failing
input.ShouldFail = false
return input
},
}))
operations.WithRetryInput(func(input SuccessFailOperationInput, _ any) SuccessFailOperationInput {
// Update input to false, so it stops failing
input.ShouldFail = false
return input
}),
)
if err != nil {
return deployment.ChangesetOutput{}, err
}
Expand Down
2 changes: 1 addition & 1 deletion deployment/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ require (
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250506195202-6a3f20db41c6
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250425163923-16aa375957b7
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511
github.com/smartcontractkit/chainlink-deployments-framework v0.0.13
github.com/smartcontractkit/chainlink-deployments-framework v0.0.14
github.com/smartcontractkit/chainlink-evm v0.0.0-20250506144221-ee990aefea6c
github.com/smartcontractkit/chainlink-framework/multinode v0.0.0-20250502210357-2df484128afa
github.com/smartcontractkit/chainlink-protos/job-distributor v0.9.0
Expand Down
4 changes: 2 additions & 2 deletions deployment/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1246,8 +1246,8 @@ github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-2025041523564
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0=
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049 h1:7HwYt8rDz1ehTcB28oNipdTZUtV17F2sfkLTLtMJC4c=
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049/go.mod h1:2MggrMtbhqr0u4U2pcYa21lvAtvaeSawjxdIy1ytHWE=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.13 h1:8JNmafFdAHJY4QIcgPOraZpEoxMDbIMRMxlNGivHu6g=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.13/go.mod h1:mL2A8XfX+KipiqgBarPaBxULqVLSJRZ6HYObxFncMEM=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.14 h1:ZIl1lOSPYcQeYzCmkZlsy65K3+isdWRHonlmWxfQcWY=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.14/go.mod h1:mL2A8XfX+KipiqgBarPaBxULqVLSJRZ6HYObxFncMEM=
github.com/smartcontractkit/chainlink-evm v0.0.0-20250506144221-ee990aefea6c h1:1jrQDhZ5NJ6MtXUB1mngguhNTx897p2+WMV5c358GCE=
github.com/smartcontractkit/chainlink-evm v0.0.0-20250506144221-ee990aefea6c/go.mod h1:8QsSYkL3nf3CnRbfpcXPGkxDRc8FuiWo1GiEEZR8b2A=
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 h1:8u9xUrC+yHrTDexOKDd+jrA6LCzFFHeX1G82oj2fsSI=
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ require (
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250506195202-6a3f20db41c6
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250425163923-16aa375957b7
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511
github.com/smartcontractkit/chainlink-deployments-framework v0.0.13
github.com/smartcontractkit/chainlink-deployments-framework v0.0.14
github.com/smartcontractkit/chainlink-evm v0.0.0-20250506144221-ee990aefea6c
github.com/smartcontractkit/chainlink-protos/job-distributor v0.9.0
github.com/smartcontractkit/chainlink-testing-framework/havoc v1.50.5
Expand Down
4 changes: 2 additions & 2 deletions integration-tests/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1480,8 +1480,8 @@ github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-2025041523564
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0=
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049 h1:7HwYt8rDz1ehTcB28oNipdTZUtV17F2sfkLTLtMJC4c=
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049/go.mod h1:2MggrMtbhqr0u4U2pcYa21lvAtvaeSawjxdIy1ytHWE=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.13 h1:8JNmafFdAHJY4QIcgPOraZpEoxMDbIMRMxlNGivHu6g=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.13/go.mod h1:mL2A8XfX+KipiqgBarPaBxULqVLSJRZ6HYObxFncMEM=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.14 h1:ZIl1lOSPYcQeYzCmkZlsy65K3+isdWRHonlmWxfQcWY=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.14/go.mod h1:mL2A8XfX+KipiqgBarPaBxULqVLSJRZ6HYObxFncMEM=
github.com/smartcontractkit/chainlink-evm v0.0.0-20250506144221-ee990aefea6c h1:1jrQDhZ5NJ6MtXUB1mngguhNTx897p2+WMV5c358GCE=
github.com/smartcontractkit/chainlink-evm v0.0.0-20250506144221-ee990aefea6c/go.mod h1:8QsSYkL3nf3CnRbfpcXPGkxDRc8FuiWo1GiEEZR8b2A=
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 h1:8u9xUrC+yHrTDexOKDd+jrA6LCzFFHeX1G82oj2fsSI=
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/load/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ require (
github.com/smartcontractkit/chainlink-aptos v0.0.0-20250414155853-651b4e583ee9 // indirect
github.com/smartcontractkit/chainlink-automation v0.8.1 // indirect
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049 // indirect
github.com/smartcontractkit/chainlink-deployments-framework v0.0.13 // indirect
github.com/smartcontractkit/chainlink-deployments-framework v0.0.14 // indirect
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 // indirect
github.com/smartcontractkit/chainlink-framework/chains v0.0.0-20250502210357-2df484128afa // indirect
github.com/smartcontractkit/chainlink-framework/metrics v0.0.0-20250502210357-2df484128afa // indirect
Expand Down
4 changes: 2 additions & 2 deletions integration-tests/load/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1461,8 +1461,8 @@ github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-2025041523564
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0=
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049 h1:7HwYt8rDz1ehTcB28oNipdTZUtV17F2sfkLTLtMJC4c=
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049/go.mod h1:2MggrMtbhqr0u4U2pcYa21lvAtvaeSawjxdIy1ytHWE=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.13 h1:8JNmafFdAHJY4QIcgPOraZpEoxMDbIMRMxlNGivHu6g=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.13/go.mod h1:mL2A8XfX+KipiqgBarPaBxULqVLSJRZ6HYObxFncMEM=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.14 h1:ZIl1lOSPYcQeYzCmkZlsy65K3+isdWRHonlmWxfQcWY=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.14/go.mod h1:mL2A8XfX+KipiqgBarPaBxULqVLSJRZ6HYObxFncMEM=
github.com/smartcontractkit/chainlink-evm v0.0.0-20250506144221-ee990aefea6c h1:1jrQDhZ5NJ6MtXUB1mngguhNTx897p2+WMV5c358GCE=
github.com/smartcontractkit/chainlink-evm v0.0.0-20250506144221-ee990aefea6c/go.mod h1:8QsSYkL3nf3CnRbfpcXPGkxDRc8FuiWo1GiEEZR8b2A=
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 h1:8u9xUrC+yHrTDexOKDd+jrA6LCzFFHeX1G82oj2fsSI=
Expand Down
2 changes: 1 addition & 1 deletion system-tests/lib/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ require (
github.com/rs/zerolog v1.33.0
github.com/smartcontractkit/chain-selectors v1.0.55
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250506185033-ea88ef405511
github.com/smartcontractkit/chainlink-deployments-framework v0.0.13
github.com/smartcontractkit/chainlink-deployments-framework v0.0.14
github.com/smartcontractkit/chainlink-evm v0.0.0-20250506144221-ee990aefea6c
github.com/smartcontractkit/chainlink-protos/job-distributor v0.9.0
github.com/smartcontractkit/chainlink-testing-framework/framework v0.7.5
Expand Down
4 changes: 2 additions & 2 deletions system-tests/lib/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1234,8 +1234,8 @@ github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-2025041523564
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0=
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049 h1:7HwYt8rDz1ehTcB28oNipdTZUtV17F2sfkLTLtMJC4c=
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049/go.mod h1:2MggrMtbhqr0u4U2pcYa21lvAtvaeSawjxdIy1ytHWE=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.13 h1:8JNmafFdAHJY4QIcgPOraZpEoxMDbIMRMxlNGivHu6g=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.13/go.mod h1:mL2A8XfX+KipiqgBarPaBxULqVLSJRZ6HYObxFncMEM=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.14 h1:ZIl1lOSPYcQeYzCmkZlsy65K3+isdWRHonlmWxfQcWY=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.14/go.mod h1:mL2A8XfX+KipiqgBarPaBxULqVLSJRZ6HYObxFncMEM=
github.com/smartcontractkit/chainlink-evm v0.0.0-20250506144221-ee990aefea6c h1:1jrQDhZ5NJ6MtXUB1mngguhNTx897p2+WMV5c358GCE=
github.com/smartcontractkit/chainlink-evm v0.0.0-20250506144221-ee990aefea6c/go.mod h1:8QsSYkL3nf3CnRbfpcXPGkxDRc8FuiWo1GiEEZR8b2A=
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 h1:8u9xUrC+yHrTDexOKDd+jrA6LCzFFHeX1G82oj2fsSI=
Expand Down
2 changes: 1 addition & 1 deletion system-tests/tests/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ require (
github.com/smartcontractkit/chainlink-automation v0.8.1 // indirect
github.com/smartcontractkit/chainlink-ccip v0.0.0-20250506195202-6a3f20db41c6 // indirect
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20250425163923-16aa375957b7 // indirect
github.com/smartcontractkit/chainlink-deployments-framework v0.0.13 // indirect
github.com/smartcontractkit/chainlink-deployments-framework v0.0.14 // indirect
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 // indirect
github.com/smartcontractkit/chainlink-framework/chains v0.0.0-20250502210357-2df484128afa // indirect
github.com/smartcontractkit/chainlink-framework/metrics v0.0.0-20250502210357-2df484128afa // indirect
Expand Down
4 changes: 2 additions & 2 deletions system-tests/tests/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1436,8 +1436,8 @@ github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-2025041523564
github.com/smartcontractkit/chainlink-common/pkg/monitoring v0.0.0-20250415235644-8703639403c7/go.mod h1:yaDOAZF6MNB+NGYpxGCUc+owIdKrjvFW0JODdTcQ3V0=
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049 h1:7HwYt8rDz1ehTcB28oNipdTZUtV17F2sfkLTLtMJC4c=
github.com/smartcontractkit/chainlink-data-streams v0.1.1-0.20250417193446-eeb0a7d1e049/go.mod h1:2MggrMtbhqr0u4U2pcYa21lvAtvaeSawjxdIy1ytHWE=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.13 h1:8JNmafFdAHJY4QIcgPOraZpEoxMDbIMRMxlNGivHu6g=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.13/go.mod h1:mL2A8XfX+KipiqgBarPaBxULqVLSJRZ6HYObxFncMEM=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.14 h1:ZIl1lOSPYcQeYzCmkZlsy65K3+isdWRHonlmWxfQcWY=
github.com/smartcontractkit/chainlink-deployments-framework v0.0.14/go.mod h1:mL2A8XfX+KipiqgBarPaBxULqVLSJRZ6HYObxFncMEM=
github.com/smartcontractkit/chainlink-evm v0.0.0-20250506144221-ee990aefea6c h1:1jrQDhZ5NJ6MtXUB1mngguhNTx897p2+WMV5c358GCE=
github.com/smartcontractkit/chainlink-evm v0.0.0-20250506144221-ee990aefea6c/go.mod h1:8QsSYkL3nf3CnRbfpcXPGkxDRc8FuiWo1GiEEZR8b2A=
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 h1:8u9xUrC+yHrTDexOKDd+jrA6LCzFFHeX1G82oj2fsSI=
Expand Down
Loading