Skip to content

Commit e5a7e01

Browse files
authored
build: go 1.23 (#122)
Signed-off-by: Chris Gianelloni <[email protected]>
1 parent 6ad131a commit e5a7e01

File tree

4 files changed

+5
-10
lines changed

4 files changed

+5
-10
lines changed

.github/workflows/go-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: go-test
1717
strategy:
1818
matrix:
19-
go-version: [1.22.x, 1.23.x, 1.24.x]
19+
go-version: [1.23.x, 1.24.x]
2020
platform: [ubuntu-latest]
2121
runs-on: ${{ matrix.platform }}
2222
steps:

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# This file was copied from the following URL and modified:
2-
# https://github.com/golangci/golangci-lint-action/blob/master/README.md#how-to-use
3-
41
name: golangci-lint
52
on:
63
push:
@@ -22,12 +19,8 @@ jobs:
2219
- uses: actions/checkout@v4
2320
- uses: actions/setup-go@v5
2421
with:
25-
go-version: 1.22.x
26-
cache: false
22+
go-version: 1.23.x
2723
- name: golangci-lint
2824
uses: golangci/golangci-lint-action@v6
2925
with:
30-
version: v1.54 # current version at time of commit
31-
args: --timeout=10m
32-
# Only show new issues in a PR but show all issues for pushes
3326
only-new-issues: ${{ github.event_name == 'pull_request' && 'true' || 'false' }}

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ concurrency: ${{ github.ref }}
1010
jobs:
1111
create-release:
1212
runs-on: ubuntu-latest
13+
permissions:
14+
content: write
1315
outputs:
1416
RELEASE_ID: ${{ steps.create-release.outputs.result }}
1517
steps:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/blinklabs-io/cardano-models
22

3-
go 1.22.11
3+
go 1.23.6
44

55
require (
66
github.com/blinklabs-io/gouroboros v0.109.0

0 commit comments

Comments
 (0)