Skip to content

Commit decf67e

Browse files
committed
Escape build name in the release GH action
See more info in SO thread: https://stackoverflow.com/questions/61795201/github-action-failed-syntax-error-near-unexpected-token * Upgrade dependencies; prepare for release
1 parent 9492638 commit decf67e

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/central-sync-create.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# Extract build id from input
2929
- name: Extract Build Id
3030
run: |
31-
echo JFROG_CLI_BUILD_NAME=${{ github.event.inputs.buildName }} >> $GITHUB_ENV
31+
echo JFROG_CLI_BUILD_NAME="${{ github.event.inputs.buildName }}" >> $GITHUB_ENV
3232
echo JFROG_CLI_BUILD_NUMBER=${{ github.event.inputs.buildNumber }} >> $GITHUB_ENV
3333
3434
# Download released files

build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.kotlinVersion = '1.4.20'
2+
ext.kotlinVersion = '1.4.32'
33
repositories {
44
mavenCentral()
55
maven { url 'https://plugins.gradle.org/m2' }
@@ -58,17 +58,17 @@ ext {
5858
jacksonBomVersion = '2.12.3'
5959
jaywayJsonPathVersion = '2.4.0'
6060
junit4Version = '4.13.2'
61-
junitJupiterVersion = '5.7.1'
62-
kafkaVersion = '2.7.0'
61+
junitJupiterVersion = '5.7.2'
62+
kafkaVersion = '2.7.1'
6363
log4jVersion = '2.14.1'
64-
micrometerVersion = '1.6.6'
64+
micrometerVersion = '1.6.7'
6565
mockitoVersion = '3.9.0'
6666
reactorVersion = '2020.0.7'
6767
scalaVersion = '2.13'
68-
springBootVersion = '2.4.4' // docs module
69-
springDataVersion = '2021.0.0'
68+
springBootVersion = '2.4.5' // docs module
69+
springDataVersion = '2021.0.1'
7070
springRetryVersion = '1.3.1'
71-
springVersion = '5.3.6'
71+
springVersion = '5.3.7'
7272

7373
idPrefix = 'kafka'
7474
}

0 commit comments

Comments
 (0)