diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f2805b5..aebde6d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,9 +3,11 @@ name: CI on: push: - branches: [ "master" ] + branches: + - '**' pull_request: - branches: [ "master" ] + branches: + - '**' jobs: @@ -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 ./... diff --git a/.github/workflows/release_binaries.yml b/.github/workflows/release_binaries.yml index efd69f6..54f4a5b 100644 --- a/.github/workflows/release_binaries.yml +++ b/.github/workflows/release_binaries.yml @@ -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 .." @@ -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