Skip to content

Commit 27a7009

Browse files
committed
Add action to update chart and CRDs
Signed-off-by: Tero Saarni <tero.saarni@est.tech>
1 parent 34e2297 commit 27a7009

File tree

6 files changed

+859
-0
lines changed

6 files changed

+859
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Update Contour Helm chart
2+
3+
on:
4+
schedule:
5+
- cron: '0 4 * * *' # Runs daily at 04:00 UTC
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: write # Required for git push.
10+
pull-requests: write # Required for gh pr create.
11+
12+
env:
13+
GOPROXY: https://proxy.golang.org/
14+
GO_VERSION: 1.25.2
15+
16+
jobs:
17+
bump-contour-version:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
21+
with:
22+
go-version: ${{ env.GO_VERSION }}
23+
cache: false
24+
25+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
26+
27+
- name: update contour helm chart and create pull request
28+
env:
29+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Required for gh pr create.
30+
run: |
31+
git config user.name "github-actions[bot]"
32+
git config user.email "github-actions[bot]@users.noreply.github.com"
33+
./hack/actions/update-and-create-pr.sh --real-run

go.mod

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
module github.com/projectcontour/helm-charts
2+
3+
go 1.24.0
4+
5+
require (
6+
github.com/mholt/archives v0.1.5
7+
github.com/sirupsen/logrus v1.9.3
8+
gopkg.in/yaml.v3 v3.0.1
9+
)
10+
11+
require (
12+
github.com/STARRY-S/zip v0.2.3 // indirect
13+
github.com/andybalholm/brotli v1.2.0 // indirect
14+
github.com/bodgit/plumbing v1.3.0 // indirect
15+
github.com/bodgit/sevenzip v1.6.1 // indirect
16+
github.com/bodgit/windows v1.0.1 // indirect
17+
github.com/dsnet/compress v0.0.2-0.20230904184137-39efe44ab707 // indirect
18+
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
19+
github.com/klauspost/compress v1.18.0 // indirect
20+
github.com/klauspost/pgzip v1.2.6 // indirect
21+
github.com/kr/pretty v0.3.1 // indirect
22+
github.com/mikelolasagasti/xz v1.0.1 // indirect
23+
github.com/minio/minlz v1.0.1 // indirect
24+
github.com/nwaples/rardecode/v2 v2.2.0 // indirect
25+
github.com/pierrec/lz4/v4 v4.1.22 // indirect
26+
github.com/rogpeppe/go-internal v1.13.1 // indirect
27+
github.com/sorairolake/lzip-go v0.3.8 // indirect
28+
github.com/spf13/afero v1.15.0 // indirect
29+
github.com/stretchr/testify v1.11.1 // indirect
30+
github.com/ulikunitz/xz v0.5.15 // indirect
31+
go4.org v0.0.0-20230225012048-214862532bf5 // indirect
32+
golang.org/x/sys v0.35.0 // indirect
33+
golang.org/x/text v0.29.0 // indirect
34+
)

0 commit comments

Comments
 (0)