Skip to content

Commit 693c7ee

Browse files
committed
Feature/Go Version
- Reverted to older versions Signed-off-by: Harold Wanyama <[email protected]>
1 parent 3b92545 commit 693c7ee

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/build-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Setup go
2828
uses: actions/setup-go@v3
2929
with:
30-
go-version: '1.23.1'
30+
go-version: '1.20.1'
3131
- name: Go Version
3232
run: go version
3333
- name: Setup Node

.github/workflows/deploy-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup go
2727
uses: actions/setup-go@v3
2828
with:
29-
go-version: '1.23.1'
29+
go-version: '1.20.1'
3030
- name: Go Version
3131
run: go version
3232
- name: Setup Node

.github/workflows/deploy-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup go
2929
uses: actions/setup-go@v3
3030
with:
31-
go-version: '1.23.1'
31+
go-version: '1.20.1'
3232
check-latest: true
3333
- name: Go Version
3434
run: go version

.github/workflows/yarn-scan-backend-go-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
99
pull_request:
1010
branches:
11-
- main
11+
- dev
1212

1313
jobs:
1414
yarn-scan-backend-go-pr:

.github/workflows/yarn-scan-backend-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
99
pull_request:
1010
branches:
11-
- main
11+
- dev
1212

1313
jobs:
1414
yarn-scan-backend-pr:

cla-backend-go/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ setup-swagger:
6969

7070
setup_dev: setup-dev
7171
setup-dev:
72-
pushd /tmp && echo "==> Installing goimport..." && go install golang.org/x/tools/cmd/goimports@latest && echo "==> Installation coverage tools..." && go install golang.org/x/tools/cmd/cover@latest && popd
72+
pushd /tmp && echo "==> Installing goimport..." && go install golang.org/x/tools/cmd/goimports@v0.24.0 && echo "==> Installation coverage tools..." && go install golang.org/x/tools/cmd/cover@latest && popd
7373

7474
@echo "==> Installing linter..."
7575
@# Latest releases: https://github.com/golangci/golangci-lint/releases

0 commit comments

Comments
 (0)