Skip to content

Commit f9c3383

Browse files
authored
Merge pull request #26 from codeclimate/will/upgrade-8-30
Upgrade to 8.30
2 parents a2b59eb + 0eec17a commit f9c3383

File tree

6 files changed

+118
-89
lines changed

6 files changed

+118
-89
lines changed

CHECKSTYLE_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.26
1+
8.30

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ RUN { \
1919
ENV JAVA_HOME /usr/lib/jvm/java-1.8-openjdk/jre
2020
ENV PATH $PATH:/usr/lib/jvm/java-1.8-openjdk/jre/bin:/usr/lib/jvm/java-1.8-openjdk/bin
2121

22-
ENV JAVA_VERSION 8u222
23-
ENV JAVA_ALPINE_VERSION 8.222.10-r0
22+
ENV JAVA_VERSION 8u242
23+
ENV JAVA_ALPINE_VERSION 8.242.08-r0
2424

2525
RUN set -x \
2626
&& apk update && apk add --no-cache --update \

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.PHONY: image test
22

33
IMAGE_NAME ?= codeclimate/codeclimate-checkstyle
4-
DOCKER_RUN_MOUNTED = docker run --rm -w /usr/src/app -v $(PWD):/usr/src/app
4+
DOCKER_RUN_MOUNTED = docker run --rm --user=root -w /usr/src/app -v $(PWD):/usr/src/app
55

66
image:
77
docker build --rm -t $(IMAGE_NAME) .

bin/install-checkstyle.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
# use `make upgrade` to update this URL to the latest version
4-
URL='https://github.com/checkstyle/checkstyle/releases/download/checkstyle-8.26/checkstyle-8.26-all.jar'
4+
URL='https://github.com/checkstyle/checkstyle/releases/download/checkstyle-8.30/checkstyle-8.30-all.jar'
55

66

77
wget -O /usr/local/bin/checkstyle.jar $URL

0 commit comments

Comments
 (0)