Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try a valid semver for melange package version #228

Merged
merged 2 commits into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/daily-scan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
with:
context: deploy
image-name: replicated/replicated-sdk:${{ github.sha }}
git-tag: ${{ github.sha }}
git-tag: "1.0.0" # can't use ${{ github.sha }} because melange config requires strict format.

- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
with:
context: deploy
image-name: ttl.sh/automated-${{ github.run_id }}/replicated/replicated-sdk:24h
git-tag: ${{ github.sha }}
git-tag: "1.0.0" # can't use ${{ github.sha }} because melange config requires strict format.

- name: Build replicated chart
env:
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
printf "user-set extraEnv should exist:\n\n%s\n\n" "$output"
exit 1
fi

cat << EOF > test-values.yaml
tolerations:
- key: "test-toleration-key"
Expand Down
Loading