Compare commits
13 Commits
53cb54c662
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| d47d5bd49b | |||
| 382d9ef1cd | |||
| 99f2ebcad0 | |||
| b942e091c1 | |||
| 37749c3bc7 | |||
| d9e9d54331 | |||
| 1d6c8b68ba | |||
| 30e84c3777 | |||
| a2638b0c24 | |||
| 5b6185b236 | |||
| 3c7444675d | |||
| 7610f5d97f | |||
| 7c595ef022 |
@@ -1,22 +1,22 @@
|
||||
name: Build
|
||||
name: Build and Test
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
branches:
|
||||
- '*'
|
||||
- '!master'
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
|
||||
|
||||
- name: Setup Java
|
||||
uses: actions/setup-java@v5
|
||||
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5
|
||||
with:
|
||||
distribution: 'temurin'
|
||||
java-version: '25'
|
||||
cache: 'gradle'
|
||||
|
||||
- name: Build
|
||||
- name: Build and Test
|
||||
run: ./gradlew build --no-daemon
|
||||
|
||||
@@ -8,10 +8,10 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
|
||||
|
||||
- name: Setup Java
|
||||
uses: actions/setup-java@v5
|
||||
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5
|
||||
with:
|
||||
distribution: 'temurin'
|
||||
java-version: '25'
|
||||
@@ -35,4 +35,4 @@ jobs:
|
||||
run: docker push gitea.seeseepuff.be/seeseemelk/webgit:latest
|
||||
|
||||
- name: Trigger Watchtower
|
||||
uses: https://gitea.seeseepuff.be/actions/watchtower@v1
|
||||
uses: https://gitea.seeseepuff.be/actions/watchtower@2bf31c49a6f57d45a1580c7004911afb714fb188 # v2
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
FROM eclipse-temurin:25-alpine
|
||||
FROM eclipse-temurin:25-alpine@sha256:30d9f87d702c2c1c601ed0d31e0c88ea1ea474ee7676cda7b7a59e759181c4dd
|
||||
WORKDIR /app
|
||||
ADD ./build/libs/webgit-0.0.1-SNAPSHOT.jar /app/webgit.jar
|
||||
ENTRYPOINT ["java", "-jar", "webgit.jar"]
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
plugins {
|
||||
java
|
||||
jacoco
|
||||
id("org.springframework.boot") version "4.0.3"
|
||||
id("org.springframework.boot") version "4.1.0"
|
||||
id("io.spring.dependency-management") version "1.1.7"
|
||||
}
|
||||
|
||||
@@ -29,7 +29,7 @@ dependencies {
|
||||
implementation("org.springframework.boot:spring-boot-starter-actuator")
|
||||
implementation("org.springframework.boot:spring-boot-starter-thymeleaf")
|
||||
implementation("org.springframework.boot:spring-boot-starter-webmvc")
|
||||
implementation("org.eclipse.jgit:org.eclipse.jgit:7.2.0.202503040940-r")
|
||||
implementation("org.eclipse.jgit:org.eclipse.jgit:7.7.0.202606012155-r")
|
||||
compileOnly("org.projectlombok:lombok")
|
||||
developmentOnly("org.springframework.boot:spring-boot-devtools")
|
||||
runtimeOnly("io.micrometer:micrometer-registry-prometheus")
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.0-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.1-bin.zip
|
||||
networkTimeout=10000
|
||||
retries=0
|
||||
retryBackOffMs=500
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"config:recommended"
|
||||
"local>seeseemelk/renovate"
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user