From 0c3e48b700dc2bf983ef871e2593e864e3140416 Mon Sep 17 00:00:00 2001 From: upbound-bot Date: Mon, 6 Jan 2025 15:47:47 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=94=84=20synced=20local=20'Makefile'?= =?UTF-8?q?=20with=20remote=20'shared/configurations/Makefile'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5597e56..4780ee0 100644 --- a/Makefile +++ b/Makefile @@ -117,7 +117,7 @@ PLATFORMS ?= linux_amd64 # Tool Versions # ------------------ -UP_VERSION = v0.35.0 +UP_VERSION = v0.36.2 UP_CHANNEL = stable CROSSPLANE_CLI_VERSION = v1.18.0 CROSSPLANE_VERSION = v1.18.0-up.1 @@ -134,7 +134,7 @@ KIND_CLUSTER_NAME ?= uptest-$(PROJECT_NAME) # XPKG Configuration # ------------------ XPKG_DIR = $(shell pwd) -XPKG_IGNORE = .github/workflows/*.yaml,.github/workflows/*.yml,examples/*.yaml,.work/uptest-datasource.yaml,.cache/render/* +XPKG_IGNORE ?= .github/workflows/*.yaml,.github/workflows/*.yml,examples/*.yaml,.work/uptest-datasource.yaml,.cache/render/* XPKG_REG_ORGS ?= xpkg.upbound.io/upbound # NOTE: Skip promoting on xpkg.upbound.io as channel tags are inferred XPKG_REG_ORGS_NO_PROMOTE ?= xpkg.upbound.io/upbound From 6f3e721947ef15250fa0c4b175dd2cd025061723 Mon Sep 17 00:00:00 2001 From: upbound-bot Date: Mon, 6 Jan 2025 15:47:47 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=94=84=20synced=20local=20'.github/wo?= =?UTF-8?q?rkflows'=20with=20remote=20'shared/configurations/workflows'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yaml | 11 ++++------- .github/workflows/e2e.yaml | 1 + .github/workflows/tag.yml | 2 +- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index edd2fc4..0f3e829 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,6 +8,8 @@ on: workflow_dispatch: {} env: + DOCKER_BUILDX_VERSION: 'v0.8.2' + XPKG_ACCESS_ID: ${{ secrets.XPKG_ACCESS_ID }} jobs: @@ -30,13 +32,8 @@ jobs: if: needs.detect-noop.outputs.noop != 'true' steps: - - name: Setup QEMU - uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3 - with: - platforms: all - - name: Setup Docker Buildx - uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3 + uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3 with: version: ${{ env.DOCKER_BUILDX_VERSION }} install: true @@ -57,7 +54,7 @@ jobs: BUILD_ARGS: "--load" - name: Publish Artifacts to GitHub - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4 with: name: output path: _output/** diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index f42c8d6..d310447 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -11,3 +11,4 @@ jobs: package-type: configuration secrets: UPTEST_CLOUD_CREDENTIALS: ${{ secrets.UPTEST_CLOUD_CREDENTIALS }} + UPTEST_DATASOURCE: ${{ secrets.UPTEST_DATASOURCE }} diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index eb4c74d..4c9f1ea 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -12,7 +12,7 @@ on: jobs: create-tag: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: Checkout