Skip to content

Commit 58e403c

Browse files
authored
Merge branch 'main' into dependabot-maven-geowebcache-main-maven-dd4e7b3d4a
2 parents ccb0001 + ed8b65d commit 58e403c

41 files changed

Lines changed: 2646 additions & 49 deletions

File tree

Some content is hidden

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

.github/workflows/azure-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
matrix:
2525
java-version: [ 17, 21 ]
2626
steps:
27-
- uses: actions/checkout@v6
27+
- uses: actions/checkout@v7
2828
- uses: actions/setup-java@v5
2929
with:
3030
distribution: 'temurin'
@@ -53,7 +53,7 @@ jobs:
5353
# !contains(needs.*.result, 'cancelled') &&
5454
# !contains(needs.*.result, 'failure')
5555
steps:
56-
- uses: actions/checkout@v6
56+
- uses: actions/checkout@v7
5757
- uses: actions/setup-java@v5
5858
with:
5959
distribution: 'temurin'

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Backport Bot
1414
id: backport
1515
if: github.event.pull_request.merged && ( ( github.event.action == 'closed' && contains( join( github.event.pull_request.labels.*.name ), 'backport') ) || contains( github.event.label.name, 'backport' ) )
16-
uses: m-kuhn/backport@v1.2.7
16+
uses: m-kuhn/backport@v1.2.8
1717
with:
1818
github_token: ${{ secrets.GH_TOKEN_BOT }}
1919

.github/workflows/diskquota-jdbc-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
matrix:
2525
java-version: [ 17, 21 ]
2626
steps:
27-
- uses: actions/checkout@v6
27+
- uses: actions/checkout@v7
2828
- uses: actions/setup-java@v5
2929
with:
3030
distribution: 'temurin'

.github/workflows/gcs-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
matrix:
2525
java-version: [ 17, 21 ]
2626
steps:
27-
- uses: actions/checkout@v6
27+
- uses: actions/checkout@v7
2828
- uses: actions/setup-java@v5
2929
with:
3030
distribution: 'temurin'

.github/workflows/integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
with:
2222
java-version: 17
2323
distribution: 'temurin'
24-
- uses: actions/checkout@v6
24+
- uses: actions/checkout@v7
2525
- name: Maven repository caching
26-
uses: actions/cache@v5
26+
uses: actions/cache@v6
2727
with:
2828
path: ~/.m2/repository
2929
key: gwc-integration-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/linux.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
openjdk17:
1414
runs-on: [ubuntu-22.04]
1515
steps:
16-
- uses: actions/checkout@v6
16+
- uses: actions/checkout@v7
1717
- name: Set up JDK 17
1818
uses: actions/setup-java@v5
1919
with:
2020
java-version: 17
2121
distribution: 'temurin'
2222
- name: Maven repository caching
23-
uses: actions/cache@v5
23+
uses: actions/cache@v6
2424
with:
2525
path: ~/.m2/repository
2626
key: gwc-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -35,14 +35,14 @@ jobs:
3535
openjdk21:
3636
runs-on: [ubuntu-22.04]
3737
steps:
38-
- uses: actions/checkout@v6
38+
- uses: actions/checkout@v7
3939
- name: Set up JDK 21
4040
uses: actions/setup-java@v5
4141
with:
4242
java-version: 21
4343
distribution: 'temurin'
4444
- name: Maven repository caching
45-
uses: actions/cache@v5
45+
uses: actions/cache@v6
4646
with:
4747
path: ~/.m2/repository
4848
key: gwc-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -57,14 +57,14 @@ jobs:
5757
openjdk25:
5858
runs-on: [ubuntu-22.04]
5959
steps:
60-
- uses: actions/checkout@v6
60+
- uses: actions/checkout@v7
6161
- name: Set up JDK 25
6262
uses: actions/setup-java@v5
6363
with:
6464
java-version: 25
6565
distribution: 'temurin'
6666
- name: Maven repository caching
67-
uses: actions/cache@v5
67+
uses: actions/cache@v6
6868
with:
6969
path: ~/.m2/repository
7070
key: gwc-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -80,14 +80,14 @@ jobs:
8080
QA:
8181
runs-on: [ubuntu-22.04]
8282
steps:
83-
- uses: actions/checkout@v6
83+
- uses: actions/checkout@v7
8484
- name: Set up JDK 17
8585
uses: actions/setup-java@v5
8686
with:
8787
java-version: 17
8888
distribution: 'temurin'
8989
- name: Maven repository caching
90-
uses: actions/cache@v5
90+
uses: actions/cache@v6
9191
with:
9292
path: ~/.m2/repository
9393
key: gwc-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
runs-on: [macos-latest]
1313

1414
steps:
15-
- uses: actions/checkout@v6
15+
- uses: actions/checkout@v7
1616
- name: Set up JDK 17
1717
uses: actions/setup-java@v5
1818
with:
1919
java-version: 17
2020
distribution: 'temurin'
2121
- name: Maven repository caching
22-
uses: actions/cache@v5
22+
uses: actions/cache@v6
2323
with:
2424
path: ~/.m2/repository
2525
key: gs-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
runs-on: [windows-latest]
1313

1414
steps:
15-
- uses: actions/checkout@v6
15+
- uses: actions/checkout@v7
1616
- name: Set up JDK 17
1717
uses: actions/setup-java@v5
1818
with:
1919
java-version: 17
2020
distribution: 'temurin'
2121
- name: Maven repository caching
22-
uses: actions/cache@v5
22+
uses: actions/cache@v6
2323
with:
2424
path: ~/.m2/repository
2525
key: gwc-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

documentation/en/user/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
# The short X.Y version.
4848
version = '2.0'
4949
# The full version, including alpha/beta/rc tags.
50-
release = '2.0-SNAPSHOT'
50+
release = '2.0.x'
5151

5252
# There are two options for replacing |today|: either, you set today to some
5353
# non-false value, then it is used:

geowebcache/arcgiscache/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.geowebcache</groupId>
77
<artifactId>geowebcache</artifactId>
8-
<version>2.0-SNAPSHOT</version>
8+
<version>2.1-SNAPSHOT</version>
99
<!-- GWC VERSION -->
1010
</parent>
1111
<groupId>org.geowebcache</groupId>

0 commit comments

Comments
 (0)