Skip to content

Commit

Permalink
Improve GithubActions config
Browse files Browse the repository at this point in the history
  • Loading branch information
n-rodriguez committed Nov 19, 2024
1 parent d01c196 commit 67720eb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ name: CI

on:
push:
branches: [ "master" ]
branches:
- '**'
pull_request:
branches: [ "master" ]
branches:
- '**'

jobs:

Expand All @@ -17,7 +19,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
go-version: "1.23"

- name: Build
run: go build -v ./...
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- name: Install UPX
env:
UPXVER: "4.0.2"
UPXVER: "4.2.4"
run: |
if [[ ! -f "upx/${UPXVER}/upx" ]]; then
echo "Installing upx .."
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
go-version: "1.23"

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
Expand Down

0 comments on commit 67720eb

Please sign in to comment.