Skip to content

Commit

Permalink
technical(release): update version to 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Vacxe committed Oct 25, 2024
1 parent 197231e commit 2253935
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker_manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ on:
description: "Docker Version"
danger-js-version:
description: "Danger JS release version"
default: "11.3.1"
default: "12.3.3"
danger-kotlin-version:
description: "Danger Kotlin release version"
kotlin-version:
description: "Kotlin Version"
default: "1.7.22"
default: "2.0.21"

jobs:
docker-build-push:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ LABEL "com.github.actions.icon"="zap"
LABEL "com.github.actions.color"="blue"

ARG KOTLINC_VERSION="2.0.21"
ARG DANGER_KOTLIN_VERSION="1.3.1"
ARG DANGER_KOTLIN_VERSION="1.3.2"
ARG DANGER_JS_VERSION="11.3.1"

# Install dependencies
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![Current
Version](https://img.shields.io/badge/danger%20kotlin-v1.3.1-orange)](https://danger.systems/kotlin/)
Version](https://img.shields.io/badge/danger%20kotlin-v1.3.2-orange)](https://danger.systems/kotlin/)
[![Maven Central - SDK](https://img.shields.io/maven-central/v/systems.danger/danger-kotlin-sdk.svg?label=danger-kotlin-sdk)](https://search.maven.org/search?q=g:%22systems.danger%22%20AND%20a:%22danger-kotlin-sdk%22)
[![Awesome Kotlin Badge](https://kotlin.link/awesome-kotlin.svg)](https://github.com/KotlinBy/awesome-kotlin)

Expand Down Expand Up @@ -92,9 +92,9 @@ jobs:
runs-on: ubuntu-latest
name: "Run Danger"
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Danger
uses: danger/[email protected].1
uses: danger/[email protected].2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```
Expand All @@ -110,7 +110,7 @@ jobs:
runs-on: ubuntu-latest
name: "Run Danger"
container:
image: docker://ghcr.io/danger/danger-kotlin:1.3.1
image: docker://ghcr.io/danger/danger-kotlin:1.3.2
steps:
- uses: actions/checkout@v4
- name: Run Danger
Expand Down
2 changes: 1 addition & 1 deletion danger-kotlin-kts/version.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
group 'systems.danger'
version '1.3.1'
version '1.3.2'
2 changes: 1 addition & 1 deletion danger-kotlin-library/version.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
group 'systems.danger'
version '1.3.1'
version '1.3.2'
2 changes: 1 addition & 1 deletion danger-kotlin/src/runnerMain/kotlin/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import systems.danger.cmd.Command
import systems.danger.cmd.dangerjs.DangerJS

const val PROCESS_DANGER_KOTLIN = "danger-kotlin"
const val VERSION = "1.3.1"
const val VERSION = "1.3.2"

fun main(args: Array<String>) {
Log.isVerbose = args.contains("--verbose") || (getenv("DEBUG")?.toString()?.isNotEmpty() ?: false)
Expand Down
2 changes: 1 addition & 1 deletion github-action/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/danger/danger-kotlin:1.3.1
FROM ghcr.io/danger/danger-kotlin:1.3.2

COPY entrypoint.sh /entrypoint.sh

Expand Down
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

VERSION=1.3.1
VERSION=1.3.2

while getopts v:h: flag
do
Expand Down

0 comments on commit 2253935

Please sign in to comment.