Skip to content

Commit 7fec38f

Browse files
committed
Fix dependabot
Remove renovate Test dependabot Remove dependabot Add back dependabot Use build gradle naming to support dependabot Add gh action ci Bump junit5_version from 5.8.1 to 5.8.2 Bumps `junit5_version` from 5.8.1 to 5.8.2. Updates `junit-jupiter-api` from 5.8.1 to 5.8.2 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit5@r5.8.1...r5.8.2) Updates `junit-jupiter-engine` from 5.8.1 to 5.8.2 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit5@r5.8.1...r5.8.2) Updates `junit-jupiter-params` from 5.8.1 to 5.8.2 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit5@r5.8.1...r5.8.2) Updates `junit-vintage-engine` from 5.8.1 to 5.8.2 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit5@r5.8.1...r5.8.2) --- updated-dependencies: - dependency-name: org.junit.jupiter:junit-jupiter-api dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.junit.jupiter:junit-jupiter-engine dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.junit.jupiter:junit-jupiter-params dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.junit.vintage:junit-vintage-engine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Change ci to build Fix
1 parent 56dcd57 commit 7fec38f

File tree

11 files changed

+42
-16
lines changed

11 files changed

+42
-16
lines changed

.github/dependabot.yml

+15-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
1+
# Please see the documentation for all configuration options:
2+
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
3+
14
version: 2
25
updates:
3-
- package-ecosystem: gradle
4-
directory: "/"
5-
schedule:
6-
interval: daily
7-
open-pull-requests-limit: 10
6+
- package-ecosystem: "gradle"
7+
directory: "/"
8+
schedule:
9+
interval: daily
10+
open-pull-requests-limit: 8
11+
- package-ecosystem: "github-actions"
12+
directory: "/"
13+
schedule:
14+
interval: daily
15+
time: "09:00"
16+
timezone: Europe/Madrid
17+
open-pull-requests-limit: 8

.github/workflows/ci.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI Pipeline
2+
on: [push, pull_request]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
fail-fast: false
8+
matrix:
9+
java: [1.8, 9, 11]
10+
name: Java ${{ matrix.java }}
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v2
14+
- name: Set up JDK ${{ matrix.java }}
15+
uses: actions/setup-java@v1
16+
with:
17+
java-version: ${{ matrix.java }}
18+
- name: Cache Gradle packages
19+
uses: actions/cache@v1
20+
with:
21+
path: ~/.gradle/caches
22+
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
23+
restore-keys: ${{ runner.os }}-gradle
24+
- name: Build with Gradle
25+
run: ./gradlew check jacocoTestReport
File renamed without changes.
File renamed without changes.
File renamed without changes.

logcapture-junit5/logcapture-junit5.gradle logcapture-junit5/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
ext {
6-
junit5_version = "5.8.1"
6+
junit5_version = "5.8.2"
77
}
88

99
dependencies {

logcapture-kotest/logcapture-kotest.gradle logcapture-kotest/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.jetbrains.kotlin.jvm' version '1.5.31'
2+
id 'org.jetbrains.kotlin.jvm' version '1.6.0'
33
}
44

55
ext {
File renamed without changes.
File renamed without changes.

renovate.json

-5
This file was deleted.

settings.gradle

-4
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,4 @@ include 'logcapture-core',
77
'logcapture-example'
88

99
rootProject.name = 'logcapture'
10-
rootProject.children.each { child ->
11-
child.name = child.name - ~/.*\\//
12-
child.buildFileName = "${child.name}.gradle"
13-
}
1410

0 commit comments

Comments
 (0)