From f6e239d653ecdebc057ef69c030d2bb2c6718342 Mon Sep 17 00:00:00 2001 From: Arsham Arya Date: Thu, 18 Apr 2024 14:51:40 +0330 Subject: [PATCH] fix: build step in github actions. --- .github/workflows/gen_coverage.yaml | 6 +++--- go.mod | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gen_coverage.yaml b/.github/workflows/gen_coverage.yaml index 9c9e77a..7fda654 100644 --- a/.github/workflows/gen_coverage.yaml +++ b/.github/workflows/gen_coverage.yaml @@ -19,9 +19,9 @@ jobs: uses: actions/setup-go@v5 with: go-version: ${{ matrix.go }} - - - name: Build - run: go install + + - name: Install dependencies + run: go mod download - name: Test run: | diff --git a/go.mod b/go.mod index 11136be..099f7de 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/arshamalh/dockeroller -go 1.21.0 +go 1.21 require ( github.com/docker/docker v20.10.17+incompatible