File tree Expand file tree Collapse file tree 5 files changed +8
-26
lines changed
Expand file tree Collapse file tree 5 files changed +8
-26
lines changed Original file line number Diff line number Diff line change 33 "labels" : [
44 " dependencies"
55 ],
6- "assignees" : [
7- " rob93c"
8- ],
96 "packageRules" : [
107 {
11- "enabledManagers" : [
12- " gradle" ,
13- " dockerfile" ,
14- " github-actions"
15- ],
168 "matchUpdateTypes" : [
179 " minor" ,
1810 " patch"
1911 ],
20- "automerge" : true ,
21- "assignAutomerge" : true ,
22- "minimumReleaseAge" : " 1 week" ,
2312 "matchPackageNames" : [
2413 " *"
2514 ]
26- },
27- {
28- "matchManagers" : [
29- " gradle-wrapper"
30- ],
31- "schedule" : [
32- " at any time"
33- ],
34- "automerge" : false
3515 }
3616 ],
3717 "extends" : [
Original file line number Diff line number Diff line change 11.github/workflows/unit-test.yml
22Dockerfile
3+ qodana.yaml
Original file line number Diff line number Diff line change @@ -2,12 +2,12 @@ FROM eclipse-temurin AS builder
22
33# bump: libwebp /LIBWEBP_VERSION=([\d.]+)/ git:https://chromium.googlesource.com/webm/libwebp.git|^1
44# bump: libwebp after ./hashupdate Dockerfile LIBWEBP $LATEST
5- ARG LIBWEBP_VERSION=1.4 .0
5+ ARG LIBWEBP_VERSION=1.5 .0
66ARG LIBWEBP_URL="https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-$LIBWEBP_VERSION-linux-x86-64.tar.gz"
7- ARG LIBWEBP_SHA256=94ac053be5f8cb47a493d7a56b2b1b7328bab9cff24ecb89fa642284330d8dff
7+ ARG LIBWEBP_SHA256=f4bf49f85991f50e86a5404d16f15b72a053bb66768ed5cc0f6d042277cc2bb8
88
99WORKDIR /app
10- RUN curl "$LIBWEBP_URL" -o libwebp.tar.gz && \
10+ RUN curl -L --fail --retry 3 --retry-delay 5 "$LIBWEBP_URL" -o libwebp.tar.gz && \
1111 echo "$LIBWEBP_SHA256 libwebp.tar.gz" | sha256sum -c - && \
1212 tar -xzf libwebp.tar.gz --one-top-level=libwebp --strip-components=1
1313COPY settings.gradle build.gradle gradlew ./
Original file line number Diff line number Diff line change 11#! /bin/sh
2- set -eu
2+ set -euo
33
44# Usage: hashupdate <FILE> <NAME> <VERSION>
5- URL_TEMPLATE=$( grep " $2 _URL=" " $1 " | sed -E ' s/.*="(.*)"/\1/' | tr -d ' \r ' )
5+ URL_TEMPLATE=$( grep " $2 _URL=" " $1 " | sed -E ' s/.*="(.*)"/\1/' )
66URL=$( echo " $URL_TEMPLATE " | sed " s/\$ $2 _VERSION/$3 /g" )
77SHA256=$( curl -sL " $URL " | sha256sum | sed -e ' s/ -//g' )
88sed -i -E " s/$2 _SHA256=.*/$2 _SHA256=$SHA256 /" " $1 "
Original file line number Diff line number Diff line change 33 name : qodana.recommended
44include :
55 - name : VulnerableLibrariesGlobal
6- linter : jetbrains/qodana-jvm:2024.2
6+ # bump: qodana /qodana-jvm:([\d.]+)/ docker:jetbrains/qodana-jvm|/^[\d]{4}\.\d+$/|sort
7+ linter : jetbrains/qodana-jvm:2024.3
78projectJDK : temurin-23
You can’t perform that action at this time.
0 commit comments