Skip to content

Commit a9c8c51

Browse files
authored
Merge branch 'main' into main
2 parents ffc0a27 + 8a86d64 commit a9c8c51

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/actions/setup-language/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ runs:
1111
uses: actions/setup-go@v5
1212
if: ${{ matrix.language == 'go' }}
1313
with:
14-
go-version: '1.20'
14+
go-version: '1.23'
1515
- uses: actions/setup-node@v4
1616
if: ${{matrix.language == 'typescript'}}
1717
with:
18-
node-version: 18
18+
node-version: 20
1919
- uses: actions/setup-java@v4
2020
if: ${{matrix.language == 'java'}}
2121
with:
@@ -24,8 +24,8 @@ runs:
2424
- uses: actions/setup-python@v5
2525
if: ${{matrix.language == 'python'}}
2626
with:
27-
python-version: '3.10'
27+
python-version: '3.12'
2828
- uses: actions/setup-dotnet@v4
2929
if: ${{matrix.language == 'csharp'}}
3030
with:
31-
dotnet-version: 8
31+
dotnet-version: 8

.github/workflows/build-pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
# Get the list of changed files, excluding Markdown files
3434
- name: Get changed files
3535
id: changed-files
36-
uses: tj-actions/changed-files@v44
36+
uses: tj-actions/changed-files@v45
3737
with:
3838
files: ${{ matrix.language }}/**
3939
files_ignore: '**/*.md'

0 commit comments

Comments
 (0)