Skip to content

Commit 3576ead

Browse files
committed
chore(deps): Update dependencies
Signed-off-by: Rene Leonhardt <65483435+reneleonhardt@users.noreply.github.com>
1 parent ac0eea4 commit 3576ead

File tree

13 files changed

+353
-320
lines changed

13 files changed

+353
-320
lines changed

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
- package-ecosystem: "maven"
8+
directory: "/"
9+
schedule:
10+
interval: "daily"
11+
- package-ecosystem: "maven"
12+
directory: "/r2dbc-spec"
13+
schedule:
14+
interval: "daily"

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
- os: ubuntu-latest
1818
mvn: ./mvnw
1919
- os: windows-latest
20-
mvn: mvn
20+
mvn: mvnw.cmd
2121
- os: macos-latest
2222
mvn: ./mvnw
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
- name: Set up JDK 1.8
26-
uses: actions/setup-java@v3
26+
uses: actions/setup-java@v4
2727
with:
2828
java-version: 8
2929
distribution: temurin

.github/workflows/pullrequests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
- os: ubuntu-latest
1515
mvn: ./mvnw
1616
- os: windows-latest
17-
mvn: mvn
17+
mvn: mvnw.cmd
1818
- os: macos-latest
1919
mvn: ./mvnw
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
- name: Set up JDK 1.8
23-
uses: actions/setup-java@v3
23+
uses: actions/setup-java@v4
2424
with:
2525
java-version: 8
2626
distribution: temurin

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
if: github.repository == 'r2dbc/r2dbc-spi'
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- name: Set up JDK 1.8
17-
uses: actions/setup-java@v3
17+
uses: actions/setup-java@v4
1818
with:
1919
java-version: 8
2020
distribution: temurin
2121
- name: Initialize Maven Version
22-
run: ./mvnw -q org.apache.maven.plugins:maven-help-plugin:2.1.1:evaluate -Dexpression=project.version
22+
run: ./mvnw -q org.apache.maven.plugins:maven-help-plugin:3.4.1:evaluate -Dexpression=project.version
2323
- name: GPG Check
2424
run: gpg -k
2525
- name: Release with Maven

.mvn/wrapper/MavenWrapperDownloader.java

Lines changed: 0 additions & 110 deletions
This file was deleted.

.mvn/wrapper/maven-wrapper.jar

100755100644
14.3 KB
Binary file not shown.
Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,20 @@
1-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.4/apache-maven-3.8.4-bin.zip
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
wrapperVersion=3.3.2
18+
distributionType=bin
19+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip
20+
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar

ci/build-and-deploy-to-maven-central.sh

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -euo pipefail
44

5-
VERSION=$(./mvnw org.apache.maven.plugins:maven-help-plugin:2.1.1:evaluate -Dexpression=project.version -o | grep -v INFO)
5+
VERSION=$(./mvnw org.apache.maven.plugins:maven-help-plugin:3.4.1:evaluate -Dexpression=project.version -o | grep -v INFO)
66

77
if [[ $VERSION =~ [^.*-SNAPSHOT$] ]] ; then
88

@@ -16,8 +16,8 @@ if [[ $VERSION =~ [^(\d+\.)+(RC(\d+)|M(\d+)|RELEASE)$] ]] ; then
1616
# Prepare GPG Key is expected to be in base64
1717
# Exported with gpg -a --export-secret-keys "your@email" | base64 > gpg.base64
1818
#
19-
printf "$GPG_KEY_BASE64" | base64 --decode > gpg.asc
20-
echo ${GPG_PASSPHRASE} | gpg --batch --yes --passphrase-fd 0 --import gpg.asc
19+
printf "%s" "$GPG_KEY_BASE64" | base64 --decode > gpg.asc
20+
echo "${GPG_PASSPHRASE}" | gpg --batch --yes --passphrase-fd 0 --import gpg.asc
2121
gpg -k
2222

2323
#
@@ -29,11 +29,10 @@ if [[ $VERSION =~ [^(\d+\.)+(RC(\d+)|M(\d+)|RELEASE)$] ]] ; then
2929
-s settings.xml \
3030
-Pcentral \
3131
-Dmaven.test.skip=true \
32-
-Dgpg.passphrase=${GPG_PASSPHRASE} \
32+
-Dgpg.passphrase="${GPG_PASSPHRASE}" \
3333
clean deploy -B
3434
else
3535

3636
echo "Not a release: $VERSION"
3737
exit 1
3838
fi
39-

0 commit comments

Comments
 (0)