Skip to content

Commit

Permalink
fix nightly build
Browse files Browse the repository at this point in the history
nigthly version detection seems broken.
  • Loading branch information
fujiwara committed Feb 16, 2025
1 parent f5c57a7 commit 09c38fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
go-version: "1.24"

- name: Check out code into the Go module directory
uses: actions/checkout@v4
Expand All @@ -22,7 +22,7 @@ jobs:

- name: Set env
run: |
git fetch --tags
git fetch --prune --unshallow --tags
full=$(git describe --abbrev --tags --always)
version=$(echo "$full" | cut -d- -f1)
rev=$(echo "$full" | cut -d- -f2- | sha1sum | cut -d' ' -f1)
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ jobs:
strategy:
matrix:
go:
- "1.21"
- "1.22"
- "1.23"
- "1.24"
name: Build
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 09c38fb

Please sign in to comment.