From 3d20a0bb64f0af7bf888563f98efebff4c4be50b Mon Sep 17 00:00:00 2001 From: j-mendez Date: Sat, 2 Mar 2024 19:09:27 -0500 Subject: [PATCH] ci(dagger): remove cue install --- .github/workflows/main.yml | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index eda23f5..595b978 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,19 +11,11 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v3 - - name: Install Dagger - uses: dagger/dagger-for-github@v3 + - name: Test + uses: dagger/dagger-for-github@v5 with: - install-only: true - - name: Build deps - run: | - sudo apt update && sudo apt upgrade -y - sudo apt install -y curl - curl -L https://dl.dagger.io/dagger-cue/install.sh | VERSION=0.2.232 sh - ./bin/dagger-cue version - - name: Dagger project update - run: ./bin/dagger-cue project update - - name: Dagger do test - run: ./bin/dagger-cue do test --log-format plain + verb: test + args: "" + version: "0.9.3" # - name: Dagger do deploy # run: dagger do deploy --log-format plain