diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 93353ed..6c14dcd 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,3 +6,8 @@ updates: schedule: interval: "daily" open-pull-requests-limit: 10 + groups: + actions: + update-types: + - "minor" + - "patch" diff --git a/.github/workflows/test-action.yml b/.github/workflows/test-action.yml index 4fe55a9..dbb9cb3 100644 --- a/.github/workflows/test-action.yml +++ b/.github/workflows/test-action.yml @@ -17,8 +17,8 @@ jobs: ct version CT_VERSION_OUTPUT=$(ct version 2>&1 /dev/null) ACTUAL_VERSION=$(echo "$CT_VERSION_OUTPUT" | grep Version | rev | cut -d ' ' -f1 | rev) - if [[ $ACTUAL_VERSION != 'v3.10.0' ]]; then - echo 'should be v3.10.0' + if [[ $ACTUAL_VERSION != 'v3.10.1' ]]; then + echo 'should be v3.10.1' exit 1 else exit 0 diff --git a/action.yml b/action.yml index 8f08990..9147d0e 100644 --- a/action.yml +++ b/action.yml @@ -6,15 +6,15 @@ branding: icon: anchor inputs: version: - description: "The chart-testing version to install (default: 3.10.0)" + description: "The chart-testing version to install (default: 3.10.1)" required: false - default: '3.10.0' + default: '3.10.1' yamllint_version: description: "The yamllint version to install (default: 1.27.1)" required: false default: '1.27.1' yamale_version: - description: "The yamale version to install (default: 3.0.4)" + description: "The yamale version to install (default: 3.0.4)" required: false default: '3.0.4' runs: diff --git a/ct.sh b/ct.sh index 4432ed9..4394de4 100755 --- a/ct.sh +++ b/ct.sh @@ -4,7 +4,7 @@ set -o errexit set -o nounset set -o pipefail -DEFAULT_CHART_TESTING_VERSION=3.10.0 +DEFAULT_CHART_TESTING_VERSION=3.10.1 DEFAULT_YAMLLINT_VERSION=1.27.1 DEFAULT_YAMALE_VERSION=3.0.4