Skip to content

Commit

Permalink
Fix gox installation in release workflow and update setup-go to v5 (#149
Browse files Browse the repository at this point in the history
)

* fix gox installation & update setup-go to v5

* set fixed gox version
  • Loading branch information
mchrome authored Sep 16, 2024
1 parent 2d89cf8 commit a26d347
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
matrix: ${{ steps.build.outputs.matrix }}
steps:
- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: ^1

Expand All @@ -36,7 +36,7 @@ jobs:
- name: Install packaging dependencies
run: |
gem install fpm package_cloud
GO111MODULE=off go get github.com/mitchellh/gox
cd && go install github.com/mitchellh/gox@v1.0.1
- name: Build packages
id: build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:

- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}

Expand Down Expand Up @@ -113,15 +113,15 @@ jobs:
steps:

- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}

- name: Check out code
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: ^1

Expand Down

0 comments on commit a26d347

Please sign in to comment.