Skip to content

Commit

Permalink
Update dagger module
Browse files Browse the repository at this point in the history
Signed-off-by: Matias Pan <gh@matiaspan.dev>
  • Loading branch information
matipan committed Oct 24, 2024
1 parent 2853371 commit a32d67a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
lint-test:
name: Lint & Test
runs-on: dagger-g2-v0-13-4-2c
runs-on: dagger-g2-v0-13-5-2c
steps:
- uses: actions/checkout@v4

Expand All @@ -24,7 +24,7 @@ jobs:
publish:
name: Publish to ECR
runs-on: dagger-g2-v0-13-4-2c
runs-on: dagger-g2-v0-13-5-2c
if: github.ref_name == 'main'
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion ci/dagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"name": "ci",
"sdk": "go",
"source": ".",
"engineVersion": "v0.13.4"
"engineVersion": "v0.13.5"
}
5 changes: 4 additions & 1 deletion ci/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ type Ci struct {
Source *dagger.Directory
}

func New(source *dagger.Directory) *Ci {
func New(
// +defaultPath="../"
source *dagger.Directory,
) *Ci {
return &Ci{
Source: source,
}
Expand Down

0 comments on commit a32d67a

Please sign in to comment.