Skip to content

Commit

Permalink
chore(dependencies): Bump spinnaker-dependencies to 0.120.1 (#1765)
Browse files Browse the repository at this point in the history
Should fix the Artifact.metadata serialization issue.
  • Loading branch information
ajordens authored Nov 2, 2017
1 parent 940bf69 commit 5fefb46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ allprojects {
group = "com.netflix.spinnaker.orca"

ext {
spinnakerDependenciesVersion = project.hasProperty('spinnakerDependenciesVersion') ? project.property('spinnakerDependenciesVersion') : '0.120.0'
spinnakerDependenciesVersion = project.hasProperty('spinnakerDependenciesVersion') ? project.property('spinnakerDependenciesVersion') : '0.120.1'
}

def checkLocalVersions = [spinnakerDependenciesVersion: spinnakerDependenciesVersion]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public TaskResult execute(Stage stage) {
}

private Artifact generateArtifactFrom(ImageFinder.ImageDetails imageDetails, String cloudProvider) {
Map<String, String> metadata = new HashMap<>();
Map<String, Object> metadata = new HashMap<>();
try {
ImageFinder.JenkinsDetails jenkinsDetails = imageDetails.getJenkins();
metadata.put("build_info_url", jenkinsDetails.get("host"));
Expand Down

0 comments on commit 5fefb46

Please sign in to comment.