From bc170cdca9a7cb82fec38006f1655c4974294b07 Mon Sep 17 00:00:00 2001 From: Brandon Fergerson Date: Wed, 30 Mar 2022 11:07:53 +0200 Subject: [PATCH 1/2] bump --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index c0d02c3..b05aaad 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ kotlin.code.style=official cliGroup=com.sourceplusplus -projectVersion=0.4.4 +projectVersion=0.4.5 vertxVersion=4.2.4 graalVersion = 21.3.0 From 27947c8ca94a8df6d5f413285419ca0779ada3a5 Mon Sep 17 00:00:00 2001 From: Brandon Fergerson Date: Wed, 30 Mar 2022 12:08:27 +0200 Subject: [PATCH 2/2] concurrency limit --- .github/workflows/build.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cd3e59f..74f4a6d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,6 +17,9 @@ jobs: buildOnMac: runs-on: macos-latest timeout-minutes: 20 + concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true steps: - uses: actions/checkout@v2 @@ -48,6 +51,9 @@ jobs: buildOnWindows: runs-on: windows-2019 timeout-minutes: 20 + concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true steps: - uses: actions/checkout@v2 @@ -86,6 +92,9 @@ jobs: buildOnLinux: runs-on: ubuntu-latest timeout-minutes: 20 + concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true outputs: version: ${{ steps.properties.outputs.version }}