Skip to content

Commit 5d3a961

Browse files
Argocd - upgrade chart to 6.7.18
Argocd - upgrade chart to 6.7.18
2 parents ca1ded9 + 27e6599 commit 5d3a961

File tree

141 files changed

+2622
-1343
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+2622
-1343
lines changed

.github/configs/renovate-config.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module.exports = {
2+
platform: 'github',
3+
gitAuthor: 'renovate[bot] <renovate[bot]@users.noreply.github.com>',
4+
autodiscover: false,
5+
allowPostUpgradeCommandTemplating: true,
6+
allowedPostUpgradeCommands: [".*"],
7+
};

.github/workflows/chart-version-bump.yml

Lines changed: 0 additions & 57 deletions
This file was deleted.

.github/workflows/lint-and-test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
options: --user 1001
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
16+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
1717
- name: Run ah lint
1818
working-directory: ./charts
1919
run: ah lint
@@ -22,17 +22,17 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
25+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
2626
with:
2727
fetch-depth: 0
2828

2929
- name: Set up Helm
30-
uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 # v3.5
30+
uses: azure/setup-helm@fe7b79cd5ee1e45176fcad797de68ecaf3ca4814 # v4.2.0
3131
with:
3232
version: v3.10.1 # Also update in publish.yaml
3333

3434
- name: Set up python
35-
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
35+
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
3636
with:
3737
python-version: 3.9
3838

@@ -70,7 +70,7 @@ jobs:
7070
fi
7171
7272
- name: Create kind cluster
73-
uses: helm/kind-action@dda0770415bac9fc20092cacbc54aa298604d140 # v1.8.0
73+
uses: helm/kind-action@0025e74a8c7512023d06dc019c617aa3cf561fde # v1.10.0
7474
if: steps.list-changed.outputs.changed == 'true'
7575
with:
7676
config: .github/configs/kind-config.yaml

.github/workflows/pr-sizing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ jobs:
2525
size-label:
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: pascalgn/size-label-action@37a5ad4ae20ea8032abf169d953bcd661fd82cd3 # v0.5.0
28+
- uses: pascalgn/size-label-action@bbbaa0d5ccce8e2e76254560df5c64b82dac2e12 # v0.5.2
2929
env:
3030
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

.github/workflows/pr-title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: Validate PR title
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: amannn/action-semantic-pull-request@e9fabac35e210fea40ca5b14c0da95a099eff26f # v5.4.0
22+
- uses: amannn/action-semantic-pull-request@cfb60706e18bc85e8aec535e3c577abe8f70378e # v5.5.2
2323
env:
2424
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2525
with:

.github/workflows/publish.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,19 @@ permissions:
1212

1313
jobs:
1414
publish:
15+
if: github.repository == 'argoproj/argo-helm'
1516
permissions:
1617
contents: write # for helm/chart-releaser-action to push chart release and create a release
1718
packages: write # to push OCI chart package to GitHub Registry
1819
runs-on: ubuntu-latest
1920
steps:
2021
- name: Checkout
21-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
22+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
2223
with:
2324
fetch-depth: 0
2425

2526
- name: Install Helm
26-
uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 # v3.5
27+
uses: azure/setup-helm@fe7b79cd5ee1e45176fcad797de68ecaf3ca4814 # v4.2.0
2728
with:
2829
version: v3.10.1 # Also update in lint-and-test.yaml
2930

@@ -67,7 +68,7 @@ jobs:
6768
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
6869

6970
- name: Login to GHCR
70-
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
71+
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.0
7172
with:
7273
registry: ghcr.io
7374
username: ${{ github.actor }}

.github/workflows/renovate.yaml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Renovate
2+
on:
3+
# The "*" (#42, asterisk) character has special semantics in YAML, so this
4+
# string has to be quoted.
5+
schedule:
6+
- cron: '0 * * * *'
7+
# Manual trigger is also possible
8+
workflow_dispatch: {}
9+
10+
permissions:
11+
contents: read
12+
13+
jobs:
14+
renovate:
15+
if: github.repository == 'argoproj/argo-helm'
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Get token
19+
uses: actions/create-github-app-token@7bfa3a4717ef143a604ee0a99d859b8886a96d00 # v1.9.3
20+
id: get_token
21+
with:
22+
app-id: ${{ vars.RENOVATE_APP_ID }}
23+
private-key: ${{ secrets.RENOVATE_APP_PRIVATE_KEY }}
24+
25+
- name: Checkout
26+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
27+
28+
- name: Self-hosted Renovate
29+
uses: renovatebot/github-action@063e0c946b9c1af35ef3450efc44114925d6e8e6 # v40.1.11
30+
with:
31+
configurationFile: .github/configs/renovate-config.js
32+
# renovate: datasource=docker depName=ghcr.io/renovatebot/renovate
33+
renovate-version: 37.278.0
34+
token: '${{ steps.get_token.outputs.token }}'
35+
env:
36+
LOG_LEVEL: 'debug'
37+
RENOVATE_REPOSITORIES: '${{ github.repository }}'

.github/workflows/scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
steps:
3535
- name: "Checkout code"
36-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
36+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
3737
with:
3838
persist-credentials: false
3939

@@ -60,7 +60,7 @@ jobs:
6060
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6161
# format to the repository Actions tab.
6262
- name: "Upload artifact"
63-
uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0
63+
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
6464
with:
6565
name: SARIF file
6666
path: results.sarif

charts/argo-cd/Chart.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dependencies:
22
- name: redis-ha
33
repository: https://dandydeveloper.github.io/charts/
4-
version: 4.23.0
5-
digest: sha256:589f9972fbdf36194d443c9d3be2a1747f43e03c435fc48004cc0cbe6b3c6e3c
6-
generated: "2023-05-15T19:25:26.049618+09:00"
4+
version: 4.26.1
5+
digest: sha256:d72c308ab0eef4233e25bfc3f8fc97cf9b02a9c5d0186ea89e2f8fb332cb9c41
6+
generated: "2024-02-18T19:42:53.135599+02:00"

charts/argo-cd/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ appVersion: v2.10-2024.3.29-1dcc54e29
33
kubeVersion: ">=1.23.0-0"
44
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
55
name: argo-cd
6-
version: 5.55.0-1-cap-2.10-2024.3.29-1dcc54e29
6+
version: 6.7.18-cap-2.10-2024.3.29-1dcc54e29
77
home: https://github.com/argoproj/argo-helm
88
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
99
sources:
@@ -18,7 +18,7 @@ maintainers:
1818
url: https://argoproj.github.io/
1919
dependencies:
2020
- name: redis-ha
21-
version: 4.23.0
21+
version: 4.26.1
2222
repository: https://dandydeveloper.github.io/charts/
2323
condition: redis-ha.enabled
2424
annotations:

0 commit comments

Comments
 (0)