update go to 1.24.5

This commit is contained in:
2025-10-02 22:54:31 +02:00
parent 0688d6b213
commit d449b4bd1f
4 changed files with 4 additions and 4 deletions

View File

@@ -4,7 +4,7 @@ jobs:
build:
strategy:
matrix:
version: [1.24.1]
version: [1.24.5]
os: [ubuntu-latest, windows-latest, macos-latest]
name: Build
runs-on: ${{ matrix.os }}

View File

@@ -15,7 +15,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.24.1
go-version: 1.24.5
- name: Build the executables
run: ./mkrel.sh rpnc ${{ github.ref_name}}

View File

@@ -28,7 +28,7 @@ import (
lua "github.com/yuin/gopher-lua"
)
const VERSION string = "2.1.6"
const VERSION string = "2.1.7"
const Usage string = `This is rpn, a reverse polish notation calculator cli.

2
go.mod
View File

@@ -1,6 +1,6 @@
module rpn
go 1.24.1
go 1.24.5
require (
github.com/charmbracelet/bubbles v0.21.0