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
This commit is contained in:
Artem Bilan
2021-05-17 13:32:55 -04:00
parent 949263851c
commit decf67ee8d
2 changed files with 8 additions and 8 deletions

View File

@@ -28,7 +28,7 @@ jobs:
# Extract build id from input
- name: Extract Build Id
run: |
echo JFROG_CLI_BUILD_NAME=${{ github.event.inputs.buildName }} >> $GITHUB_ENV
echo JFROG_CLI_BUILD_NAME="${{ github.event.inputs.buildName }}" >> $GITHUB_ENV
echo JFROG_CLI_BUILD_NUMBER=${{ github.event.inputs.buildNumber }} >> $GITHUB_ENV
# Download released files

View File

@@ -1,5 +1,5 @@
buildscript {
ext.kotlinVersion = '1.4.20'
ext.kotlinVersion = '1.4.32'
repositories {
mavenCentral()
maven { url 'https://plugins.gradle.org/m2' }
@@ -58,17 +58,17 @@ ext {
jacksonBomVersion = '2.12.3'
jaywayJsonPathVersion = '2.4.0'
junit4Version = '4.13.2'
junitJupiterVersion = '5.7.1'
kafkaVersion = '2.7.0'
junitJupiterVersion = '5.7.2'
kafkaVersion = '2.7.1'
log4jVersion = '2.14.1'
micrometerVersion = '1.6.6'
micrometerVersion = '1.6.7'
mockitoVersion = '3.9.0'
reactorVersion = '2020.0.7'
scalaVersion = '2.13'
springBootVersion = '2.4.4' // docs module
springDataVersion = '2021.0.0'
springBootVersion = '2.4.5' // docs module
springDataVersion = '2021.0.1'
springRetryVersion = '1.3.1'
springVersion = '5.3.6'
springVersion = '5.3.7'
idPrefix = 'kafka'
}