Skip to content

Commit 9b9a308

Browse files
authored
Merge branch 'trunk' into adjust_development_partner
2 parents 0b6d102 + 74c9104 commit 9b9a308

File tree

253 files changed

+2361
-785
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

253 files changed

+2361
-785
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Hugo
1919
uses: peaceiris/actions-hugo@v3
2020
with:
21-
hugo-version: ' 0.125.4'
21+
hugo-version: ' 0.148.2'
2222
extended: true
2323
- name: Build
2424
run: chmod +x build-site.sh && ./build-site.sh

.github/workflows/dotnet-examples.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ jobs:
4646
run: Xvfb :99 &
4747
- name: Set up .Net Stable
4848
if: matrix.release == 'stable'
49-
uses: actions/setup-dotnet@v4
49+
uses: actions/setup-dotnet@v5
5050
with:
5151
dotnet-version: 8.x
5252
- name: Set up .Net Nightly
5353
if: matrix.release == 'nightly'
54-
uses: actions/setup-dotnet@v4
54+
uses: actions/setup-dotnet@v5
5555
with:
5656
dotnet-version: 8.x
5757
source-url: https://nuget.pkg.github.com/seleniumhq/index.json
@@ -80,7 +80,7 @@ jobs:
8080
env:
8181
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8282
- name: Set up Java
83-
uses: actions/setup-java@v4
83+
uses: actions/setup-java@v5
8484
with:
8585
distribution: 'temurin'
8686
java-version: 11

.github/workflows/java-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
run: Xvfb :99 &
4747
- name: Set up Java
4848
id: java
49-
uses: actions/setup-java@v4
49+
uses: actions/setup-java@v5
5050
with:
5151
distribution: 'temurin'
5252
java-version: 17

.github/workflows/js-examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ jobs:
4646
run: Xvfb :99 &
4747
- name: Setup Node Stable
4848
if: matrix.release == 'stable'
49-
uses: actions/setup-node@v4
49+
uses: actions/setup-node@v6
5050
with:
5151
node-version: '22.x'
5252
- name: Setup Node Nightly
5353
if: matrix.release == 'nightly'
54-
uses: actions/setup-node@v4
54+
uses: actions/setup-node@v6
5555
with:
5656
node-version: '22.x'
5757
registry-url: 'https://npm.pkg.github.com'

.github/workflows/kotlin-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
if: matrix.os == 'ubuntu'
4545
run: Xvfb :99 &
4646
- name: Set up Java
47-
uses: actions/setup-java@v4
47+
uses: actions/setup-java@v5
4848
with:
4949
distribution: 'temurin'
5050
java-version: 11

.github/workflows/link-check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ jobs:
2525
- name: Set up Hugo
2626
uses: peaceiris/actions-hugo@v3
2727
with:
28-
hugo-version: ' 0.125.4'
28+
hugo-version: ' 0.148.2'
2929
extended: true
3030

3131
- name: Setup Node
32-
uses: actions/setup-node@v4
32+
uses: actions/setup-node@v6
3333
with:
34-
node-version: '22.18.0'
34+
node-version: '22.21.1'
3535
cache: 'npm'
3636
# The action defaults to search for the dependency file (package-lock.json,
3737
# npm-shrinkwrap.json or yarn.lock) in the repository root, and uses its
@@ -51,7 +51,7 @@ jobs:
5151
args: website_and_docs/public/ --check-anchors
5252

5353
- name: Archive hyperlink results
54-
uses: actions/upload-artifact@v4
54+
uses: actions/upload-artifact@v5
5555
with:
5656
name: hyperlink-report
5757
path: website_and_docs/tmp/.hyperlink/hyperlink.log

.github/workflows/python-examples.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,22 @@ jobs:
2828
include:
2929
- os: ubuntu
3030
release: stable
31-
python: '3.9'
31+
python: '3.10'
3232
- os: ubuntu
3333
release: nightly
34-
python: '3.11'
34+
python: '3.14'
3535
- os: windows
3636
release: stable
37-
python: '3.9'
37+
python: '3.10'
3838
- os: windows
3939
release: nightly
40-
python: '3.12'
40+
python: '3.14'
4141
- os: macos
4242
release: stable
4343
python: '3.10'
4444
- os: macos
4545
release: nightly
46-
python: '3.13'
46+
python: '3.14'
4747
runs-on: ${{ format('{0}-latest', matrix.os) }}
4848
steps:
4949
- name: Checkout GitHub repo
@@ -62,7 +62,7 @@ jobs:
6262
if: matrix.os == 'ubuntu'
6363
run: Xvfb :99 &
6464
- name: Set up Python
65-
uses: actions/setup-python@v5
65+
uses: actions/setup-python@v6
6666
with:
6767
python-version: ${{ matrix.python }}
6868
- name: Install dependencies nightly non-Windows
@@ -90,7 +90,7 @@ jobs:
9090
python -m pip install --upgrade pip
9191
pip install -r requirements.txt
9292
- name: Set up Java
93-
uses: actions/setup-java@v4
93+
uses: actions/setup-java@v5
9494
with:
9595
distribution: 'temurin'
9696
java-version: 11
@@ -101,4 +101,4 @@ jobs:
101101
max_attempts: 3
102102
command: |
103103
cd examples/python
104-
pytest --reruns 3
104+
pytest --reruns 3 -n auto

.github/workflows/ruby-examples.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Set up Ruby
5252
uses: ruby/setup-ruby@v1
5353
with:
54-
ruby-version: 3.2
54+
ruby-version: 3.4.7
5555
bundler-cache: true
5656
- name: Install Gems Nightly non-Windows
5757
if: matrix.release == 'nightly' && matrix.os != 'windows'
@@ -83,7 +83,7 @@ jobs:
8383
working-directory: ./examples/ruby
8484
run: bundle install
8585
- name: Set up Java
86-
uses: actions/setup-java@v4
86+
uses: actions/setup-java@v5
8787
with:
8888
distribution: 'temurin'
8989
java-version: 11
@@ -119,7 +119,7 @@ jobs:
119119
- name: Set up Ruby
120120
uses: ruby/setup-ruby@v1
121121
with:
122-
ruby-version: 3.2
122+
ruby-version: 3.4.7
123123
bundler-cache: true
124124
- name: Install dependencies
125125
working-directory: ./examples/ruby

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup Hugo
2222
uses: peaceiris/actions-hugo@v3
2323
with:
24-
hugo-version: '0.125.4'
24+
hugo-version: '0.148.2'
2525
extended: true
2626
- name: Build
2727
run: chmod +x build-site.sh && ./build-site.sh

.gitpod.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
tasks:
22
- name: Install Hugo, init submodules and start website
33
init: |
4-
curl -LO https://github.com/gohugoio/hugo/releases/download/v0.125.4/hugo_extended_0.125.4_linux-amd64.deb && \
5-
sudo dpkg -i hugo_extended_0.125.4_linux-amd64.deb && \
6-
sudo rm hugo_extended_0.125.4_linux-amd64.deb
4+
curl -LO https://github.com/gohugoio/hugo/releases/download/v0.148.2/hugo_extended_0.148.2_linux-amd64.deb && \
5+
sudo dpkg -i hugo_extended_0.148.2_linux-amd64.deb && \
6+
sudo rm hugo_extended_0.148.2_linux-amd64.deb
77
command: |
88
cd website_and_docs
99
hugo server --baseURL $(gp url 1313) --appendPort=false

0 commit comments

Comments
 (0)