Skip to content

Commit

Permalink
Bump http-step version to 1.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosrfranco committed Oct 8, 2024
1 parent 7029c79 commit 552dd67
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
java-version: 11
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
Expand All @@ -26,7 +26,7 @@ jobs:
id: get_version
run: VERSION=$(./gradlew currentVersion -q -Prelease.quiet) && echo ::set-output name=VERSION::$VERSION
- name: Upload plugin jar
uses: actions/upload-artifact@v1.0.0
uses: actions/upload-artifact@v4.4.1
with:
# Artifact name
name: Grails-Plugin-${{ steps.get_version.outputs.VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
java-version: 11
- name: Build with Gradle
run: ./gradlew build
- name: Get Release Version
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apply plugin: 'pl.allegro.tech.build.axion-release'
apply plugin: 'groovy'
apply plugin: 'java'

sourceCompatibility = 1.8
sourceCompatibility = 11
ext.rundeckPluginVersion = '1.2'
ext.pluginClassNames='com.rundeck.plugin.HttpNotificationPlugin'
ext.pluginName = 'Http Notification'
Expand Down Expand Up @@ -61,7 +61,7 @@ repositories {
dependencies {
implementation 'org.rundeck:rundeck-core:4.13.0-20230515'

pluginLibs ('com.github.rundeck-plugins:http-step:1.1.2'){
pluginLibs ('com.github.rundeck-plugins:http-step:1.1.6'){
exclude group: 'org.rundeck', module: 'rundeck-core'
}

Expand Down
2 changes: 1 addition & 1 deletion src/test/groovy/HttpNotificationPluginSpec.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class HttpNotificationPluginSpec extends Specification{

def notificator = new HttpNotificationPlugin()

String remoteUrl="http://123.com"
String remoteUrl="http://asdf123asdf.com/"
String methodStr = "PUT"
String contentType ="text/html"
def executionData = [:]
Expand Down

0 comments on commit 552dd67

Please sign in to comment.