Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/go_modules/k8s.io/apimachinery-0.…
Browse files Browse the repository at this point in the history
…30.2
  • Loading branch information
yfodil authored Jun 28, 2024
2 parents 478a693 + 553e564 commit bd9bcbd
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @yfodil
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
restore-keys: ${{ runner.os }}-build-lint-

- name: Vendor Dependencies
run: make vendor vendor.check
run: make modules.download modules.check

# We could run 'make lint' but we prefer this action because it leaves
# 'annotations' (i.e. it comments on PRs to point out linter violations).
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
restore-keys: ${{ runner.os }}-build-check-diff-

- name: Vendor Dependencies
run: make vendor vendor.check
run: make modules.download modules.check

- name: Check Diff
run: make check-diff
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
restore-keys: ${{ runner.os }}-build-unit-tests-

- name: Vendor Dependencies
run: make vendor vendor.check
run: make modules.download modules.check

- name: Run Unit Tests
run: make -j2 test
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
restore-keys: ${{ runner.os }}-build-unit-tests-

- name: Vendor Dependencies
run: make vendor vendor.check
run: make modules.download modules.check

- name: Deploying locally built provider package
run: make local-deploy
Expand Down Expand Up @@ -232,7 +232,7 @@ jobs:
restore-keys: ${{ runner.os }}-build-publish-artifacts-

- name: Vendor Dependencies
run: make vendor vendor.check
run: make modules.download modules.check

- name: Build Artifacts
run: make -j2 build.all
Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "build"]
path = build
url = https://github.com/upbound/build
url = https://github.com/crossplane/build
10 changes: 7 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,12 @@ GO_SUBDIRS += cmd internal apis
# ====================================================================================
# Setup Kubernetes tools

KIND_VERSION = v0.15.0
UP_VERSION = v0.14.0
KIND_VERSION = v0.23.0
UP_VERSION = v0.31.0
UP_CHANNEL = stable
UPTEST_VERSION = v0.2.1
UPTEST_VERSION = v0.12.0
-include build/makelib/k8s_tools.mk
CROSSPLANE_VERSION = 1.16.0

# ====================================================================================
# Setup Images
Expand Down Expand Up @@ -199,3 +200,6 @@ crossplane.help:
help-special: crossplane.help

.PHONY: crossplane.help help-special

vendor: modules.download
vendor.check: modules.check

0 comments on commit bd9bcbd

Please sign in to comment.