Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
with:
go-version: 1.x
go-version: stable
cache-dependency-path: "**/go.sum"
- run: script/lint.sh
env:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ jobs:
shell: bash
strategy:
matrix:
go-version: [1.x, 1.24.0] # test with N and the .0 release of N-1
go-version: [stable, oldstable] # test with N and the .0 release of N-1
platform: [ubuntu-latest]
include:
# include windows, but only with the latest Go version, since there
# is very little in the library that is platform specific
- go-version: 1.x
- go-version: stable
platform: windows-latest

# only update test coverage stats with the most recent go version on linux
- go-version: 1.x
- go-version: stable
platform: ubuntu-latest
update-coverage: true
runs-on: ${{ matrix.platform }}
Expand Down
2 changes: 1 addition & 1 deletion example/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/google/go-github/v82/example

go 1.24.0
go 1.25.0

require (
github.com/ProtonMail/go-crypto v1.3.0
Expand Down
2 changes: 1 addition & 1 deletion example/newreposecretwithlibsodium/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module newreposecretwithlibsodium

go 1.24.0
go 1.25.0

require (
github.com/GoKillers/libsodium-go v0.0.0-20171022220152-dd733721c3cb
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/google/go-github/v82

go 1.24.0
go 1.25.0

require (
github.com/google/go-cmp v0.7.0
Expand Down
2 changes: 1 addition & 1 deletion otel/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/google/go-github/v82/otel

go 1.24.0
go 1.25.0

require (
github.com/google/go-github/v82 v82.0.0
Expand Down
2 changes: 1 addition & 1 deletion scrape/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/google/go-github/scrape

go 1.24.0
go 1.25.0

require (
github.com/PuerkitoBio/goquery v1.11.0
Expand Down
2 changes: 1 addition & 1 deletion tools/check-structfield-settings/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/google/go-github/v82/tools/check-structfield-settings

go 1.24.0
go 1.25.0

require (
github.com/golangci/plugin-module-register v0.1.1
Expand Down
2 changes: 1 addition & 1 deletion tools/fmtpercentv/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module tools/fmtpercentv

go 1.24.0
go 1.25.0

require (
github.com/golangci/plugin-module-register v0.1.1
Expand Down
2 changes: 1 addition & 1 deletion tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module tools

go 1.24.0
go 1.25.0

require (
github.com/alecthomas/kong v1.14.0
Expand Down
2 changes: 1 addition & 1 deletion tools/sliceofpointers/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module tools/sliceofpointers

go 1.24.0
go 1.25.0

require (
github.com/golangci/plugin-module-register v0.1.1
Expand Down
2 changes: 1 addition & 1 deletion tools/structfield/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/google/go-github/v82/tools/structfield

go 1.24.0
go 1.25.0

require (
github.com/golangci/plugin-module-register v0.1.1
Expand Down
Loading