chore: update E2E tests to use Dapr runtime v1.18.0#1658
Open
nelson-parente wants to merge 3 commits into
Open
chore: update E2E tests to use Dapr runtime v1.18.0#1658nelson-parente wants to merge 3 commits into
nelson-parente wants to merge 3 commits into
Conversation
Signed-off-by: Nelson Parente <nelson_parente@live.com.pt>
JoshVanL
requested changes
Jun 19, 2026
| runs-on: ubuntu-latest | ||
| env: | ||
| DAPR_RUNTIME_PINNED_VERSION: 1.18.0-rc.4 | ||
| DAPR_RUNTIME_PINNED_VERSION: 1.18.0 |
Contributor
There was a problem hiding this comment.
Suggested change
| DAPR_RUNTIME_PINNED_VERSION: 1.18.0 | |
| DAPR_RUNTIME_PINNED_VERSION: 1.18.1 |
Contributor
Author
There was a problem hiding this comment.
Done — applied in c1a9b08. Also bumped latestRuntimeVersion in tests/e2e/upgrade/upgrade_test.go to 1.18.1 to keep the upgrade test's latest version consistent with the pinned runtime.
| GOPROXY: https://proxy.golang.org | ||
| ARCHIVE_OUTDIR: dist/archives | ||
| DAPR_RUNTIME_PINNED_VERSION: "1.18.0-rc.4" | ||
| DAPR_RUNTIME_PINNED_VERSION: "1.18.0" |
Contributor
There was a problem hiding this comment.
Suggested change
| DAPR_RUNTIME_PINNED_VERSION: "1.18.0" | |
| DAPR_RUNTIME_PINNED_VERSION: "1.18.1" |
Contributor
Author
There was a problem hiding this comment.
Done — applied in c1a9b08. Also bumped latestRuntimeVersion in tests/e2e/upgrade/upgrade_test.go to 1.18.1 to keep the upgrade test's latest version consistent with the pinned runtime.
Addresses review feedback: bump the pinned/latest Dapr runtime version used by the E2E and upgrade tests from 1.18.0 to 1.18.1 (latest 1.18 patch). The dapr/dapr Go module dependency stays at v1.18.0 (stable within the 1.18.x line). Signed-off-by: Nelson Parente <nelson_parente@live.com.pt>
JoshVanL
approved these changes
Jun 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Post-release update of
masterto the stable Dapr v1.18.0 release (released 2026-06-10).masterwas still on1.18.0-rc.4after the release was cut. Part of the 1.18 endgame post-release checklist (dapr/dapr#9856 → "Update E2E tests in CLI to latest runtime version").Changes:
go.mod/go.sum:github.com/dapr/daprv1.18.0-rc.4→v1.18.0,github.com/dapr/go-sdkv1.15.0-rc.1→v1.15.0,github.com/dapr/components-contribv1.18.0-rc.1→v1.18.0(+go mod tidy).github/workflows/kind_e2e.yaml&self_hosted_e2e.yaml:DAPR_RUNTIME_PINNED_VERSION1.18.0-rc.4→1.18.0tests/e2e/upgrade/upgrade_test.go:latestRuntimeVersion→1.18.0,latestRuntimeVersionMinusOne→1.17.9,latestRuntimeVersionMinusTwo→1.16.15tests/apps/scheduler&tests/apps/workflowmodules:dapr/dapr→v1.18.0,dapr/go-sdk→v1.15.0Verification
go build ./...andgo vetpass for the root module and both test-app modules;go vet -tags e2e ./tests/e2e/upgrade/passes.