Skip to content

Commit 7513a12

Browse files
Merge branch 'apache:main' into main
2 parents c06993e + 6a036bc commit 7513a12

14 files changed

Lines changed: 395 additions & 283 deletions

.github/workflows/codeql-csharp-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161

6262
# Install .NET SDKs
6363
- name: Install .NET SDKs
64-
uses: actions/setup-dotnet@v4
64+
uses: actions/setup-dotnet@v5
6565
with:
6666
dotnet-version: |
6767
6.0.x
@@ -70,7 +70,7 @@ jobs:
7070
7171
# Initializes the CodeQL tools for scanning.
7272
- name: Initialize CodeQL
73-
uses: github/codeql-action/init@v3
73+
uses: github/codeql-action/init@v4
7474
with:
7575
languages: ${{ matrix.language }}
7676
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -82,7 +82,7 @@ jobs:
8282
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
8383
# If this step fails, then you should remove it and run the build manually (see below)
8484
- name: Autobuild
85-
uses: github/codeql-action/autobuild@v3
85+
uses: github/codeql-action/autobuild@v4
8686

8787
# ℹ️ Command-line programs to run using the OS shell.
8888
# 📚 https://git.io/JvXDl
@@ -92,4 +92,4 @@ jobs:
9292
# uses a compiled language
9393

9494
- name: Perform CodeQL Analysis
95-
uses: github/codeql-action/analyze@v3
95+
uses: github/codeql-action/analyze@v4

.github/workflows/codeql-java-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161

6262
# Initializes the CodeQL tools for scanning.
6363
- name: Initialize CodeQL
64-
uses: github/codeql-action/init@v3
64+
uses: github/codeql-action/init@v4
6565
with:
6666
languages: ${{ matrix.language }}
6767
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -100,4 +100,4 @@ jobs:
100100
run: mvn clean test
101101

102102
- name: Perform CodeQL Analysis
103-
uses: github/codeql-action/analyze@v3
103+
uses: github/codeql-action/analyze@v4

.github/workflows/codeql-js-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161

6262
# Initializes the CodeQL tools for scanning.
6363
- name: Initialize CodeQL
64-
uses: github/codeql-action/init@v3
64+
uses: github/codeql-action/init@v4
6565
with:
6666
languages: ${{ matrix.language }}
6767
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -73,7 +73,7 @@ jobs:
7373
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
7474
# If this step fails, then you should remove it and run the build manually (see below)
7575
- name: Autobuild
76-
uses: github/codeql-action/autobuild@v3
76+
uses: github/codeql-action/autobuild@v4
7777

7878
# ℹ️ Command-line programs to run using the OS shell.
7979
# 📚 https://git.io/JvXDl
@@ -83,4 +83,4 @@ jobs:
8383
# uses a compiled language
8484

8585
- name: Perform CodeQL Analysis
86-
uses: github/codeql-action/analyze@v3
86+
uses: github/codeql-action/analyze@v4

.github/workflows/codeql-py-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161

6262
# Initializes the CodeQL tools for scanning.
6363
- name: Initialize CodeQL
64-
uses: github/codeql-action/init@v3
64+
uses: github/codeql-action/init@v4
6565
with:
6666
languages: ${{ matrix.language }}
6767
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -73,7 +73,7 @@ jobs:
7373
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
7474
# If this step fails, then you should remove it and run the build manually (see below)
7575
- name: Autobuild
76-
uses: github/codeql-action/autobuild@v3
76+
uses: github/codeql-action/autobuild@v4
7777

7878
# ℹ️ Command-line programs to run using the OS shell.
7979
# 📚 https://git.io/JvXDl
@@ -83,4 +83,4 @@ jobs:
8383
# uses a compiled language
8484

8585
- name: Perform CodeQL Analysis
86-
uses: github/codeql-action/analyze@v3
86+
uses: github/codeql-action/analyze@v4

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ jobs:
177177
uses: actions/checkout@v5
178178

179179
- name: Setup Python
180-
uses: actions/setup-python@v5
180+
uses: actions/setup-python@v6
181181
with:
182182
python-version: 3.11
183183

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
pull-requests: write
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/labeler@v5
29+
- uses: actions/labeler@v6
3030
with:
3131
repo-token: "${{ secrets.GITHUB_TOKEN }}"
3232
sync-labels: true

.github/workflows/test-lang-csharp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
run: sudo apt-get install -y libzstd-dev
4949

5050
- name: Install .NET SDKs
51-
uses: actions/setup-dotnet@v4
51+
uses: actions/setup-dotnet@v5
5252
with:
5353
dotnet-version: |
5454
6.0.x
@@ -83,7 +83,7 @@ jobs:
8383
run: sudo apt-get install -y libzstd-dev
8484

8585
- name: Install .NET SDKs
86-
uses: actions/setup-dotnet@v4
86+
uses: actions/setup-dotnet@v5
8787
with:
8888
dotnet-version: |
8989
6.0.x

.github/workflows/test-lang-java.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
maven-version: 3.9.11
122122

123123
- name: 'Setup Python for Generating Input Data'
124-
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
124+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
125125
with:
126126
python-version: '3.12'
127127

@@ -139,7 +139,7 @@ jobs:
139139
python3 -m pip install --break-system-packages python-snappy zstandard
140140
141141
- name: 'Setup C# for Generating Interop Data'
142-
uses: actions/setup-dotnet@v4
142+
uses: actions/setup-dotnet@v5
143143
with:
144144
dotnet-version: |
145145
6.0.x

.github/workflows/test-lang-js.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
steps:
4848
- uses: actions/checkout@v5
4949
- name: Setup Node
50-
uses: actions/setup-node@v4
50+
uses: actions/setup-node@v6
5151
with:
5252
node-version: ${{ matrix.node }}
5353

@@ -78,7 +78,7 @@ jobs:
7878
steps:
7979
- uses: actions/checkout@v5
8080
- name: Setup Node
81-
uses: actions/setup-node@v4
81+
uses: actions/setup-node@v6
8282
with:
8383
node-version: ${{ matrix.node }}
8484

@@ -90,7 +90,7 @@ jobs:
9090
${{ runner.os }}-node-
9191
9292
- name: Setup Python for Generating Input Data
93-
uses: actions/setup-python@v5
93+
uses: actions/setup-python@v6
9494

9595
- name: Apt Install Compression Libs Required by Python
9696
run: |

.github/workflows/test-lang-py.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- uses: actions/checkout@v5
5454

5555
- name: Setup Python
56-
uses: actions/setup-python@v5
56+
uses: actions/setup-python@v6
5757
with:
5858
python-version: ${{ matrix.python }}
5959

@@ -99,7 +99,7 @@ jobs:
9999
- uses: actions/checkout@v5
100100

101101
- name: Setup Python
102-
uses: actions/setup-python@v5
102+
uses: actions/setup-python@v6
103103
with:
104104
python-version: ${{ matrix.python }}
105105

0 commit comments

Comments
 (0)