Skip to content

Commit

Permalink
Setting the golang version to 1.15.10 (instead of 1.15.7 in some plac…
Browse files Browse the repository at this point in the history
…es).

This is due to the following bug which causes build failures: spf13/viper#1161
  • Loading branch information
daniel-cohen committed Sep 7, 2021
1 parent 42af0a5 commit 992141c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Golang setup
uses: actions/setup-go@v1
with:
go-version: 1.15
go-version: 1.15.10
id: go

- name: Check out code into the Go module directory
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/manual_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Golang setup
uses: actions/setup-go@v1
with:
go-version: 1.15
go-version: 1.15.10
id: go

- name: Check out code into the Go module directory
Expand All @@ -36,8 +36,8 @@ jobs:
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_PAT }}
username: ${{secrets.DOCKERHUB_USER}}
password: ${{secrets.DOCKERHUB_PAT}}

- name: Build & Release
run: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Golang setup
uses: actions/setup-go@v1
with:
go-version: 1.15
go-version: 1.15.10
id: go

- name: Check out code into the Go module directory
Expand All @@ -38,12 +38,12 @@ jobs:
runs-on: ubuntu-18.04
needs: build_and_test
env:
SERVICE: segrules
SERVICE: secretsfetcher
steps:
- name: Set up Go 1.15.7
- name: Golang setup
uses: actions/setup-go@v1
with:
go-version: 1.15.7
go-version: 1.15.10
id: go

- name: Check out code into the Go module directory
Expand All @@ -63,8 +63,8 @@ jobs:
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_PAT }}
username: ${{secrets.DOCKERHUB_USER}}
password: ${{secrets.DOCKERHUB_PAT}}

- name: Build & Release
run: |
Expand Down

0 comments on commit 992141c

Please sign in to comment.