Skip to content

Commit

Permalink
Merge pull request #50 from passageidentity/updating-pull-request-wor…
Browse files Browse the repository at this point in the history
…kflow-to-use-specific-go-version

Updating and using a fixed version of GO in the workflows
  • Loading branch information
danilo-kaltner authored Mar 7, 2024
2 parents 2a0cf76 + d7af0ee commit e7564b5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: '1.20.14'

- name: Checkout code
uses: actions/checkout@v2
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/on-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: '1.20.14'

- name: Checkout code
uses: actions/checkout@v2
Expand Down

0 comments on commit e7564b5

Please sign in to comment.