Skip to content

Commit 61416fc

Browse files
Merge pull request #290 from mjechow/master
Introduce dependabot.yml and update dependencies
2 parents 8683296 + 0409534 commit 61416fc

File tree

3 files changed

+25
-7
lines changed

3 files changed

+25
-7
lines changed

.github/dependabot.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "github-actions"
9+
directory: "/"
10+
schedule:
11+
interval: "monthly"
12+
time: "06:00"
13+
open-pull-requests-limit: 10
14+
- package-ecosystem: "maven"
15+
directory: "/"
16+
schedule:
17+
interval: "monthly"
18+
time: "09:00"

.github/workflows/maven.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
java: [11, 16, 17]
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v4
2323
- name: Set up JDK
24-
uses: actions/setup-java@v3
24+
uses: actions/setup-java@v4
2525
with:
2626
java-version: ${{ matrix.java }}
2727
distribution: 'temurin'

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1313
<maven.compiler.release>11</maven.compiler.release>
14-
<bouncycastle.version>1.78</bouncycastle.version>
14+
<bouncycastle.version>1.78.1</bouncycastle.version>
1515
</properties>
1616

1717
<description>
@@ -49,7 +49,7 @@
4949
<dependency>
5050
<groupId>org.junit</groupId>
5151
<artifactId>junit-bom</artifactId>
52-
<version>5.10.1</version>
52+
<version>5.10.3</version>
5353
<type>pom</type>
5454
<scope>import</scope>
5555
</dependency>
@@ -108,7 +108,7 @@
108108
<dependency>
109109
<groupId>org.slf4j</groupId>
110110
<artifactId>slf4j-simple</artifactId>
111-
<version>2.0.9</version>
111+
<version>2.0.13</version>
112112
<scope>test</scope>
113113
</dependency>
114114

@@ -127,15 +127,15 @@
127127
<plugin>
128128
<groupId>org.apache.maven.plugins</groupId>
129129
<artifactId>maven-surefire-plugin</artifactId>
130-
<version>3.2.2</version>
130+
<version>3.3.1</version>
131131
</plugin>
132132
</plugins>
133133
</pluginManagement>
134134
<plugins>
135135
<plugin>
136136
<groupId>org.apache.maven.plugins</groupId>
137137
<artifactId>maven-compiler-plugin</artifactId>
138-
<version>3.11.0</version>
138+
<version>3.13.0</version>
139139
</plugin>
140140
<plugin>
141141
<groupId>org.sonatype.plugins</groupId>

0 commit comments

Comments
 (0)