Skip to content

Commit

Permalink
- fixing SBOM publishing for Java
Browse files Browse the repository at this point in the history
- pumping to version 17.0.0
  • Loading branch information
maksimu committed Jan 2, 2025
1 parent ee898dd commit fe89b85
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/reusable.sbom.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,10 @@ jobs:
if: inputs.project-type == 'java'
working-directory: ${{ inputs.working-directory }}
run: |
echo "Installing Syft"
curl -sSfL https://raw.githubusercontent.com/anchore/syft/main/install.sh | sh -s -- -b /usr/local/bin
echo "Syft version:"
syft version
Expand Down
2 changes: 1 addition & 1 deletion sdk/java/core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import java.util.*
group = "com.keepersecurity.secrets-manager"

// During publishing, If version ends with '-SNAPSHOT' then it will be published to Maven snapshot repository
version = "16.6.6"
version = "17.0.0"

plugins {
`java-library`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import java.util.*
import java.util.concurrent.*
import javax.net.ssl.*

const val KEEPER_CLIENT_VERSION = "mj16.6.6"
const val KEEPER_CLIENT_VERSION = "mj17.0.0"

const val KEY_HOSTNAME = "hostname" // base url for the Secrets Manager service
const val KEY_SERVER_PUBIC_KEY_ID = "serverPublicKeyId"
Expand Down

0 comments on commit fe89b85

Please sign in to comment.