Skip to content

Commit d5b584d

Browse files
authored
Merge branch 'main' into chore/allow-easier-nap-agent-updates
2 parents ccc3655 + af4a171 commit d5b584d

File tree

11 files changed

+234
-149
lines changed

11 files changed

+234
-149
lines changed

.github/dependabot.yml

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

.github/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ documentation:
2929
- head-branch: ['^docs?/']
3030

3131
dependencies:
32-
- head-branch: ['^deps?/', '^dependabot/', '^renovate/', 'pre-commit-ci-update-config']
32+
- head-branch: ['^deps?/', '^dependabot/', '^renovate/', '^mend/', 'pre-commit-ci-update-config']
3333

3434
helm_chart:
3535
- head-branch: ['^helm/', '^chart/']

.github/scripts/copy-images.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,12 @@ set -eo pipefail
66
export ROOTDIR=$(git rev-parse --show-toplevel || echo ".")
77

88
SKOPEO_BIN=skopeo
9+
910
if [ -n "$CI" ]; then
10-
SKOPEO_BIN="docker run --rm -v $HOME/.docker/config.json:/tmp/auth.json $(grep skopeo "${ROOTDIR}/tests/Dockerfile" | grep FROM | cut -d ' ' -f 2)"
11+
SKOPEO_IMAGE=quay.io/skopeo/stable
12+
# renovate: datasource=docker depName=quay.io/skopeo/stable
13+
SKOPEO_VERSION=v1.20.0-immutable
14+
SKOPEO_BIN="docker run --rm -v $HOME/.docker/config.json:/tmp/auth.json ${SKOPEO_IMAGE}:${SKOPEO_VERSION}"
1115
fi
1216

1317
## Setup inputs

.github/scripts/exclude_ci_files.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
.github/actionlint.yaml
2-
.github/dependabot.yml
32
.github/labeler.yml
43
.github/PULL_REQUEST_TEMPLATE.md
54
.github/release.yml
@@ -26,8 +25,6 @@
2625
.github/workflows/cherry-pick.yml
2726
.github/workflows/codeql-analysis.yml
2827
.github/workflows/create-release-branch.yml
29-
.github/workflows/dependabot-auto-merge.yml
30-
.github/workflows/dependabot-hugo.yml
3128
.github/workflows/dependency-review.yml
3229
.github/workflows/dockerhub-description.yml
3330
.github/workflows/docs-build-push.yml

.github/workflows/dependabot-auto-merge.yml

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

.github/workflows/f5-cla.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
remote-repository-name: "f5-cla-data"
4444
path-to-signatures: "signatures/beta/signatures.json"
4545
# Comma separated list of usernames for maintainers or any other individuals who should not be prompted for a CLA.
46-
allowlist: bot*
46+
allowlist: bot*,renovate,mend
4747
# Do not lock PRs after a merge.
4848
lock-pullrequest-aftermerge: false
4949
env:

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ override DOCKER_BUILD_OPTIONS += --build-arg IC_VERSION=$(VERSION) --build-arg P
1818
ARCH ?= amd64 ## The architecture of the image or binary. For example: amd64, arm64, ppc64le, s390x. Not all architectures are supported for all targets
1919
GOOS ?= linux ## The OS of the binary. For example linux, darwin
2020
TELEMETRY_ENDPOINT ?= oss.edge.df.f5.com:443
21+
# renovate: datasource=docker depName=golangci/golangci-lint
22+
GOLANGCI_LINT_VERSION ?= v2.5.0 ## The version of golangci-lint to use
2123

2224
# Additional flags added here can be accessed in main.go.
2325
# e.g. `main.version` maps to `var version` in main.go
@@ -51,7 +53,7 @@ all: test lint verify-codegen update-crds debian-image
5153
.PHONY: lint
5254
lint: ## Run linter
5355
@git fetch
54-
docker run --pull always --rm -v $(shell pwd):/kubernetes-ingress -w /kubernetes-ingress -v $(shell go env GOCACHE):/cache/go -e GOCACHE=/cache/go -e GOLANGCI_LINT_CACHE=/cache/go -v $(shell go env GOPATH)/pkg:/go/pkg golangci/golangci-lint:latest git diff -p origin/main > /tmp/diff.patch && golangci-lint --color always run -v --new-from-patch=/tmp/diff.patch
56+
docker run --pull always --rm -v $(shell pwd):/kubernetes-ingress -w /kubernetes-ingress -v $(shell go env GOCACHE):/cache/go -e GOCACHE=/cache/go -e GOLANGCI_LINT_CACHE=/cache/go -v $(shell go env GOPATH)/pkg:/go/pkg golangci/golangci-lint:$(GOLANGCI_LINT_VERSION) git diff -p origin/main > /tmp/diff.patch && golangci-lint --color always run -v --new-from-patch=/tmp/diff.patch
5557

5658
.PHONY: lint-python
5759
lint-python: ## Run linter for python tests

0 commit comments

Comments
 (0)