Skip to content

Commit

Permalink
fix: fix go version 1.21 from 1.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nunenuh committed Aug 24, 2023
1 parent 450699b commit 87aef10
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.21.0' # Adjust to your desired Go version
go-version: '1.21' # Adjust to your desired Go version

- name: Install dependencies
run: make deps
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.21'

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.21.0'
go-version: '1.21'

- name: Login to Docker Hub
uses: docker/login-action@v2
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/readme.md

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.21.0' # Adjust to your desired Go version
go-version: '1.21' # Adjust to your desired Go version

- name: Install dependencies
run: make deps
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/nunenuh/iquote-fiber

go 1.21.0
go 1.21

require (
github.com/go-playground/validator/v10 v10.15.1
Expand Down

0 comments on commit 87aef10

Please sign in to comment.