Skip to content

Commit

Permalink
Merge branch 'develop' into feat/order-go
Browse files Browse the repository at this point in the history
  • Loading branch information
ansgarschulte authored Jan 29, 2025
2 parents a53e326 + aff83f4 commit 6ab5143
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,17 @@ jobs:
if: github.ref == 'refs/heads/main'
uses: snyk/actions/setup@master

- name: "[main] Synk monitor: maven"
- name: "[main] Synk monitor: maven (Java)"
if: github.ref == 'refs/heads/main'
run: snyk monitor --all-projects --prune-repeated-subdependencies --target-reference=${{ github.ref_name }} -- -s .github/workflows/maven-settings.xml
run: snyk monitor --all-projects --exclude=go.mod --prune-repeated-subdependencies --target-reference=${{ github.ref_name }} -- -s .github/workflows/maven-settings.xml
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
PAT_USERNAME: ${{ secrets.PAT_USERNAME }}
PAT_TOKEN: ${{ secrets.PAT_TOKEN }}

- name: "[main] Synk monitor: maven (Go)"
if: github.ref == 'refs/heads/main'
run: snyk monitor --all-projects --exclude=pom.xml --prune-repeated-subdependencies --target-reference=${{ github.ref_name }}
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
PAT_USERNAME: ${{ secrets.PAT_USERNAME }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ manifest should match snapshot:
valueFrom:
fieldRef:
fieldPath: metadata.labels['tags.datadoghq.com/version']
image: steadybit/bestseller-toys:develop
image: steadybit/bestseller-toys-go:develop
imagePullPolicy: Always
livenessProbe:
httpGet:
Expand Down Expand Up @@ -169,7 +169,7 @@ manifest should match snapshot replica count:
valueFrom:
fieldRef:
fieldPath: metadata.labels['tags.datadoghq.com/version']
image: steadybit/bestseller-toys:develop
image: steadybit/bestseller-toys-go:develop
imagePullPolicy: Always
livenessProbe:
httpGet:
Expand Down
2 changes: 1 addition & 1 deletion charts/steadybit-shopping-demo/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ bestsellerToys:
enabled: true
image:
# Container image name
name: steadybit/bestseller-toys
name: steadybit/bestseller-toys-go
# Container image tag
tag: develop
# Container resources
Expand Down

0 comments on commit 6ab5143

Please sign in to comment.