π§ fix: bump dagger v0.20.6 β v0.20.8#30
Merged
Conversation
Release pipeline has been failing because the engine pinned in `dagger.json` (v0.20.6) and the CLI installed by `dagger-for-github` no longer round-trip cleanly with the current daggerverse modules β the version handshake fires before `dagger call` reaches the user code, so every PR / CI / cut-release / release run dies in the bootstrap step. Bumps `engineVersion` in each module's `dagger.json` and the `DAGGER_VERSION` env in the PR workflow to v0.20.8, matching the rest of the org's repos that have already moved. Refs PCC-543
|
| Filename | Overview |
|---|---|
| .github/workflows/pr.yaml | Bumps DAGGER_VERSION env var from 0.20.6 to 0.20.8 to match module engine versions |
| bucketupload/dagger.json | engineVersion bumped from v0.20.6 to v0.20.8 |
| checksum/dagger.json | engineVersion bumped from v0.20.6 to v0.20.8 |
| ghcontrib/dagger.json | engineVersion bumped from v0.20.6 to v0.20.8 |
| ghrelease/dagger.json | engineVersion bumped from v0.20.6 to v0.20.8 |
| go/dagger.json | engineVersion bumped from v0.20.6 to v0.20.8 |
| golangcilint/dagger.json | engineVersion bumped from v0.20.6 to v0.20.8 |
| utils/dagger.json | engineVersion bumped from v0.20.6 to v0.20.8 |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[PR Workflow Triggered] --> B[dagger-for-github installs CLI\nDAGGER_VERSION=0.20.8]
B --> C{CLI β Engine\nVersion Handshake}
C -->|v0.20.6 - FAIL| D[β Pipeline fails before\nuser code is reached]
C -->|v0.20.8 - PASS| E[β
dagger call proceeds]
E --> F[bucketupload\nv0.20.8]
E --> G[checksum\nv0.20.8]
E --> H[ghcontrib\nv0.20.8]
E --> I[ghrelease\nv0.20.8]
E --> J[go\nv0.20.8]
E --> K[golangcilint\nv0.20.8]
E --> L[utils\nv0.20.8]
Reviews (1): Last reviewed commit: "π§ fix: bump dagger v0.20.6 β v0.20.8" | Re-trigger Greptile
jasonwc
approved these changes
May 13, 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.
Summary
dagger.json(v0.20.6) and the CLI installed bydagger-for-githubno longer round-trip cleanly with the current daggerverse modules. The version handshake fails beforedagger callreaches user code.engineVersionin every module (bucketupload,checksum,ghcontrib,ghrelease,go,golangcilint,utils) andDAGGER_VERSIONin the PR workflow to v0.20.8, matching the rest of the org repos (e.g.paperPR #40) that have already moved.Refs PCC-543
Test plan