Skip to content

Commit

Permalink
chore(CI/CD): Fix go version
Browse files Browse the repository at this point in the history
  • Loading branch information
levaitamas committed Aug 2, 2023
1 parent 05182c8 commit 9d0dd71
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.20
go-version: '1.20'

- name: Download modules
run: go mod download
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.20
go-version: '1.20'
- name: Checkout code
uses: actions/checkout@v3
- name: Run linters
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.20
go-version: '1.20'
- name: Download modules
run: go mod download
- name: Go install
Expand All @@ -35,7 +35,7 @@ jobs:
if: success()
uses: actions/setup-go@v4
with:
go-version: 1.20
go-version: '1.20'
- name: Checkout code
uses: actions/checkout@v3
- name: Calc coverage
Expand Down

0 comments on commit 9d0dd71

Please sign in to comment.