Skip to content

Commit

Permalink
build: fix Go install order
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdecaf committed Jan 8, 2025
1 parent 8034ee9 commit dc54002
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,18 @@ jobs:
# if: runner.os == 'Windows'
# run: choco install -y xsltproc

- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: stable
id: go

- name: Install Deps
env:
GO111MODULE: "on"
run: |
go install github.com/jbowtie/ratago@latest
# Setup Go and start our checks
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.14
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v2

Expand Down

0 comments on commit dc54002

Please sign in to comment.