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
46 changes: 23 additions & 23 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
uses: actions/setup-dotnet@v5
with:
dotnet-version: '6.0.x'
- name: Set up Go 1.23
- name: Set up Go 1.25
uses: actions/setup-go@v6
with:
go-version: '1.23'
go-version: '1.25'
- name: Set up Java 8
uses: actions/setup-java@v5
with:
Expand Down Expand Up @@ -111,10 +111,10 @@ jobs:
uses: actions/setup-dotnet@v5
with:
dotnet-version: '6.0.x'
- name: Set up Go 1.23
- name: Set up Go 1.25
uses: actions/setup-go@v6
with:
go-version: '1.23'
go-version: '1.25'
- name: Set up Java 8
uses: actions/setup-java@v5
with:
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
matrix:
title: ['baseline']
dotnet: ['6.0.x']
go: ['1.23']
go: ['1.25']
java: ['8']
node: ['20'] # EOS 2026-10-30
os: [ubuntu-latest]
Expand All @@ -198,73 +198,73 @@ jobs:
- title: 'Windows'
os: windows-latest
dotnet: '6.0.x'
go: '1.23'
go: '1.25'
java: '8'
node: '20'
python: '3.9'
# Test using macOS
- title: 'macOS'
os: macos-latest
dotnet: '6.0.x'
go: '1.23'
go: '1.25'
java: '8'
node: '20'
python: '3.9'
# Test alternate Nodes
- title: 'Node 18'
java: '8'
dotnet: '6.0.x'
go: '1.23'
go: '1.25'
node: '18' # EOS 2025-11-30
os: ubuntu-latest
python: '3.9'
- title: 'Node 20'
java: '8'
dotnet: '6.0.x'
go: '1.23'
go: '1.25'
node: '20' # EOL 2026-04-30
os: ubuntu-latest
python: '3.9'
- title: 'Node 22'
java: '8'
dotnet: '6.0.x'
go: '1.23'
go: '1.25'
node: '22' # EOL 2027-04-30
os: ubuntu-latest
python: '3.9'
- title: 'Node 24'
java: '8'
dotnet: '6.0.x'
go: '1.23'
go: '1.25'
node: '24' # EOL 2028-04-30
os: ubuntu-latest
python: '3.9'
# Test alternate .NETs
- title: '.NET 7.0'
java: '8'
dotnet: '7.0.x'
go: '1.23'
go: '1.25'
node: '20'
os: ubuntu-latest
python: '3.9'
- title: '.NET 8.0'
java: '8'
dotnet: '7.0.x'
go: '1.23'
go: '1.25'
node: '20'
os: ubuntu-latest
python: '3.9'
- title: '.NET 9.0'
java: '8'
dotnet: '9.0.x'
go: '1.23'
go: '1.25'
node: '20'
os: ubuntu-latest
python: '3.9'
- title: '.NET 10.0'
java: '8'
dotnet: '10.0.x'
go: '1.23'
go: '1.25'
node: '20'
os: ubuntu-latest
python: '3.9'
Expand All @@ -287,43 +287,43 @@ jobs:
- title: 'Java 11'
java: '11'
dotnet: '6.0.x'
go: '1.23'
go: '1.25'
node: '20'
os: ubuntu-latest
python: '3.9'
# Test alternate Pythons
- title: 'Python 3.9'
python: '3.9'
dotnet: '6.0.x'
go: '1.23'
go: '1.25'
java: '8'
node: '20'
os: ubuntu-latest
- title: 'Python 3.10'
python: '3.10'
dotnet: '6.0.x'
go: '1.23'
go: '1.25'
java: '8'
node: '20'
os: ubuntu-latest
- title: 'Python 3.11'
python: '3.11'
dotnet: '6.0.x'
go: '1.23'
go: '1.25'
java: '8'
node: '20'
os: ubuntu-latest
- title: 'Python 3.12'
python: '3.12'
dotnet: '6.0.x'
go: '1.23'
go: '1.25'
java: '8'
node: '20'
os: ubuntu-latest
- title: 'Python 3.13'
python: '3.13'
dotnet: '6.0.x'
go: '1.23'
go: '1.25'
java: '8'
node: '20'
os: ubuntu-latest
Expand Down Expand Up @@ -440,10 +440,10 @@ jobs:
uses: actions/setup-dotnet@v5
with:
dotnet-version: '7.0.x'
- name: Set up Go 1.23
- name: Set up Go 1.25
uses: actions/setup-go@v6
with:
go-version: '1.23'
go-version: '1.25'
- name: Set up Java 20
uses: actions/setup-java@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion packages/@jsii/go-runtime-test/project/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/aws/jsii/go-runtime-test

go 1.23.0
go 1.25.0

toolchain go1.24.5

Expand Down
Loading