Skip to content

Commit

Permalink
ci(pubsub): fix go version in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bradub committed Aug 18, 2023
1 parent 2cb173b commit 798d686
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/lint-test_pubsub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ on:

env:
PACKAGE: pubsub
GO_VERSION: 1.19

name: test-pubsub
jobs:
Expand All @@ -21,9 +20,9 @@ jobs:
uses: actions/checkout@v3

- name: Install Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
go-version: stable

- name: Lint
uses: golangci/golangci-lint-action@v3
Expand All @@ -40,9 +39,9 @@ jobs:
uses: actions/checkout@v3

- name: Install Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
go-version: stable

- name: test
env:
Expand Down

0 comments on commit 798d686

Please sign in to comment.