File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11version : 2.1
22
33orbs :
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
77workflows :
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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
55RUN apk add --no-cache npm
66COPY package*.json ./
77RUN npm install --production
88
9- FROM alpine:$alpine_version as base
9+ FROM alpine:$alpine_version AS base
1010
1111RUN apk add --no-cache nodejs bash
1212COPY --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
1717COPY docs /docs
1818RUN adduser --uid 2004 --disabled-password --gecos "" docker
1919COPY target/universal/stage/ /workdir/
Original file line number Diff line number Diff line change 1- scalaVersion := " 2.13.11 "
1+ scalaVersion := " 2.13.16 "
22
33name := " codacy-duplication-jscpd"
44
55libraryDependencies ++= 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)
99enablePlugins(GraalVMNativeImagePlugin )
Original file line number Diff line number Diff line change 1- sbt.version = 1.8.3
1+ sbt.version = 1.10.1
Original file line number Diff line number Diff line change 1- addSbtPlugin(" com.codacy" % " codacy-sbt-plugin" % " 25.1.1 " )
1+ addSbtPlugin(" com.codacy" % " codacy-sbt-plugin" % " 25.2.2 " )
22addSbtPlugin(" com.typesafe.sbt" % " sbt-native-packager" % " 1.8.1" )
You can’t perform that action at this time.
0 commit comments