Skip to content

Commit 19688ee

Browse files
TCE-1301 Improvements (#46)
* bump some versions
1 parent c9a2c2a commit 19688ee

6 files changed

Lines changed: 26 additions & 11 deletions

File tree

.circleci/config.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
version: 2.1
22

33
orbs:
4-
codacy: codacy/base@12.1.3
5-
codacy_plugins_test: codacy/plugins-test@2.0.6
4+
codacy: codacy/base@12.2.0
5+
codacy_plugins_test: codacy/plugins-test@2.0.11
66

77
workflows:
88
version: 2
@@ -28,6 +28,8 @@ workflows:
2828
- codacy_plugins_test/run:
2929
name: plugins_test
3030
run_json_tests: false
31+
run_pattern_tests: false
32+
run_multiple_tests: false
3133
run_duplication_tests: true
3234
requires:
3335
- publish_docker_local

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,16 @@ node_modules
33
.bsp
44
.metals
55

6+
#Ignore vscode AI rules
7+
.github/copilot-instructions.md
8+
9+
.bloop/
10+
.vscode/
11+
project/.bloop/
12+
project/metals.sbt
13+
project/project/
14+
project/.DS_Store
15+
.DS_Store
16+
17+
#Ignore vscode AI rules
18+
.github/instructions/codacy.instructions.md

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
ARG alpine_version=3.20
1+
ARG alpine_version=3.22
22

3-
FROM alpine:$alpine_version as builder
3+
FROM alpine:$alpine_version AS builder
44

55
RUN apk add --no-cache npm
66
COPY package*.json ./
77
RUN npm install --production
88

9-
FROM alpine:$alpine_version as base
9+
FROM alpine:$alpine_version AS base
1010

1111
RUN apk add --no-cache nodejs bash
1212
COPY --from=builder /node_modules /node_modules
1313

14-
FROM base as dev
14+
FROM base AS dev
1515

16-
RUN apk add --no-cache openjdk11
16+
RUN apk add --no-cache openjdk17
1717
COPY docs /docs
1818
RUN adduser --uid 2004 --disabled-password --gecos "" docker
1919
COPY target/universal/stage/ /workdir/

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
scalaVersion := "2.13.11"
1+
scalaVersion := "2.13.16"
22

33
name := "codacy-duplication-jscpd"
44

55
libraryDependencies ++= Seq(
6-
"com.codacy" %% "codacy-duplication-scala-seed" % "2.1.1",
6+
"com.codacy" %% "codacy-duplication-scala-seed" % "2.1.4",
77
"org.scalameta" %% "svm-subs" % "20.2.0"
88
)
99
enablePlugins(GraalVMNativeImagePlugin)

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version = 1.8.3
1+
sbt.version = 1.10.1

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
addSbtPlugin("com.codacy" % "codacy-sbt-plugin" % "25.1.1")
1+
addSbtPlugin("com.codacy" % "codacy-sbt-plugin" % "25.2.2")
22
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.8.1")

0 commit comments

Comments
 (0)