Skip to content

Commit

Permalink
fix: Update Go version to '1.23'.
Browse files Browse the repository at this point in the history
  • Loading branch information
mattevans committed Dec 11, 2024
1 parent ce327fd commit 3c21dd6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
name: Release

on:
workflow_dispatch:
push:
branches:
- master
- develop
tags:
- 'v*'

Expand All @@ -21,7 +25,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
go-version: '1.23'

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand All @@ -40,6 +44,6 @@ jobs:
with:
distribution: goreleaser
version: latest
args: release --clean
args: release --clean ${{ github.ref_type == 'tag' && '' || '--snapshot' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 3c21dd6

Please sign in to comment.