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

chore: bump makefile tool dependency version #1976

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/high-availability.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
contents: read
strategy:
matrix:
DAPR_VERSION: ["1.13.2"]
DAPR_VERSION: ["1.14.4"]
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
Expand Down
22 changes: 11 additions & 11 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,29 +29,29 @@ KIND_VERSION ?= 0.25.0
KUBERNETES_VERSION ?= 1.30.6
KIND_KUBERNETES_VERSION ?= 1.30.6
GATEKEEPER_VERSION ?= 3.17.0
DAPR_VERSION ?= 1.12.5
COSIGN_VERSION ?= 2.2.3
DAPR_VERSION ?= 1.14.4
COSIGN_VERSION ?= 2.4.1
NOTATION_VERSION ?= 1.2.0
ORAS_VERSION ?= 1.1.0
ORAS_VERSION ?= 1.2.1

HELM_VERSION ?= 3.14.2
HELMFILE_VERSION ?= 0.162.0
HELM_VERSION ?= 3.16.3
HELMFILE_VERSION ?= 0.169.2
BATS_BASE_TESTS_FILE ?= test/bats/base-test.bats
BATS_PLUGIN_TESTS_FILE ?= test/bats/plugin-test.bats
BATS_CLI_TESTS_FILE ?= test/bats/cli-test.bats
BATS_QUICKSTART_TESTS_FILE ?= test/bats/quickstart-test.bats
BATS_HA_TESTS_FILE ?= test/bats/high-availability.bats
BATS_VERSION ?= 1.10.0
SYFT_VERSION ?= v1.0.0
YQ_VERSION ?= v4.42.1
BATS_VERSION ?= 1.11.1
SYFT_VERSION ?= v1.18.0
YQ_VERSION ?= v4.44.6
YQ_BINARY ?= yq_linux_amd64
ALPINE_IMAGE ?= alpine@sha256:93d5a28ff72d288d69b5997b8ba47396d2cbb62a72b5d87cd3351094b5d578a0
ALPINE_IMAGE_VULNERABLE ?= alpine@sha256:25fad2a32ad1f6f510e528448ae1ec69a28ef81916a004d3629874104f8a7f70
REDIS_IMAGE_TAG ?= 7.0-debian-11
REDIS_IMAGE_TAG ?= 7.4-debian-12
CERT_ROTATION_ENABLED ?= false
REGO_POLICY_ENABLED ?= false
SBOM_TOOL_VERSION ?=v2.2.3
TRIVY_VERSION ?= 0.49.1
SBOM_TOOL_VERSION ?=v2.2.9
TRIVY_VERSION ?= 0.58.0

GATEKEEPER_NAMESPACE = gatekeeper-system
RATIFY_NAME = ratify
Expand Down
2 changes: 1 addition & 1 deletion dev.high-availability.helmfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ releases:
namespace: dapr-system
createNamespace: true
chart: dapr/dapr
version: 1.13.2
version: 1.14.4
wait: true
- name: gatekeeper
namespace: gatekeeper-system
Expand Down
2 changes: 1 addition & 1 deletion high-availability.helmfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ releases:
namespace: dapr-system
createNamespace: true
chart: dapr/dapr
version: 1.13.2
version: 1.14.4
wait: true
- name: gatekeeper
namespace: gatekeeper-system
Expand Down
Loading