Skip to content
This repository has been archived by the owner on Feb 7, 2025. It is now read-only.

Commit

Permalink
Update the setup-go steps in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
halprin committed May 15, 2024
1 parent f78ec26 commit 792304f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version-file: go.mod
go-version-file: ./src/go.mod

- name: Run unit tests
run: make unitTests
Expand All @@ -31,7 +31,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version-file: go.mod
go-version-file: ./src/go.mod

- name: Vet
run: make vet
Expand All @@ -52,7 +52,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version-file: go.mod
go-version-file: ./src/go.mod

- name: Build Image
run: make dockerBuild
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version-file: go.mod
go-version-file: ./src/go.mod

- name: Compile and Build Docker Image
run: make dockerBuild
2 changes: 1 addition & 1 deletion .github/workflows/codeql_reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version-file: go.mod
go-version-file: ./src/go.mod

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down

0 comments on commit 792304f

Please sign in to comment.