Skip to content

Commit

Permalink
fix: some little issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dirien committed Dec 9, 2024
1 parent c08542b commit 7b96a39
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 3 deletions.
44 changes: 44 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
version: 2
updates:
- package-ecosystem: "gomod"
directory: "/provider"
schedule:
interval: "weekly"
time: "08:00"
day: "sunday"
labels:
- "dependencies"
commit-message:
prefix: "chore"
include: "scope"
- package-ecosystem: "gomod"
directory: "/sdk"
schedule:
interval: "weekly"
day: "sunday"
time: "08:00"
labels:
- "dependencies"
commit-message:
prefix: "chore"
include: "scope"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
time: "08:00"
labels:
- "dependencies"
commit-message:
prefix: "chore"
include: "scope"
- package-ecosystem: "docker"
directory: "/.devcontainer"
schedule:
interval: "daily"
labels:
- "dependencies"
commit-message:
prefix: "chore"
include: "scope"
4 changes: 2 additions & 2 deletions .github/workflows/chart-lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ on:
pull_request:
paths:
- helm/**
- "!helm/pulumi-operator/README.md"
- "!helm/pulumi-operator/README.md.gotmpl"
- "!helm/README.md"
- "!helm/README.md.gotmpl"

permissions: read-all

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/chart-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,6 @@ jobs:
if [ -z "${pkg:-}" ]; then
break
fi
helm push "${pkg}" oci://ghcr.io/pulumi/helm-charts |& tee .digest
helm push "${pkg}" oci://ghcr.io/"${GITHUB_REPOSITORY_OWNER}"/charts |& tee .digest
cosign sign -y $(cat .digest | awk -F "[, ]+" '/Pushed/{print $NF}')
done

0 comments on commit 7b96a39

Please sign in to comment.