From b4d21d18ce48f995c982b57f8623f2a01211cefa Mon Sep 17 00:00:00 2001 From: ArchitectBot <61872893+architectbot@users.noreply.github.com> Date: Fri, 1 Dec 2023 13:43:52 +0100 Subject: [PATCH] Align files (#36) Co-authored-by: github-actions --- .circleci/config.yml | 2 +- .github/workflows/zz_generated.check_values_schema.yaml | 2 +- .github/workflows/zz_generated.create_release.yaml | 9 ++++----- .github/workflows/zz_generated.create_release_pr.yaml | 2 +- .github/workflows/zz_generated.gitleaks.yaml | 2 +- Makefile | 2 +- Makefile.gen.app.mk | 2 +- Makefile.gen.go.mk | 4 ++-- 8 files changed, 12 insertions(+), 13 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e71ec0eb..b09f15a1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,7 +1,7 @@ version: 2.1 orbs: - architect: giantswarm/architect@4.33.0 + architect: giantswarm/architect@4.35.5 workflows: build: diff --git a/.github/workflows/zz_generated.check_values_schema.yaml b/.github/workflows/zz_generated.check_values_schema.yaml index 3126cdf5..059ed8c9 100644 --- a/.github/workflows/zz_generated.check_values_schema.yaml +++ b/.github/workflows/zz_generated.check_values_schema.yaml @@ -1,6 +1,6 @@ # DO NOT EDIT. Generated with: # -# devctl@6.14.0 +# devctl@6.17.1 # name: 'Values and schema' on: diff --git a/.github/workflows/zz_generated.create_release.yaml b/.github/workflows/zz_generated.create_release.yaml index 2df0ad9d..4e5d7d9f 100644 --- a/.github/workflows/zz_generated.create_release.yaml +++ b/.github/workflows/zz_generated.create_release.yaml @@ -1,6 +1,6 @@ # DO NOT EDIT. Generated with: # -# devctl@6.14.0 +# devctl@6.17.1 # name: Create Release on: @@ -93,7 +93,7 @@ jobs: uses: giantswarm/install-binary-action@v1.1.0 with: binary: "architect" - version: "6.11.0" + version: "6.13.0" - name: Install semver uses: giantswarm/install-binary-action@v1.1.0 with: @@ -184,13 +184,12 @@ jobs: git push "${REMOTE_REPO}" --tags - name: Create release id: create_gh_release - uses: actions/create-release@v1 + uses: ncipollo/release-action@v1 env: GITHUB_TOKEN: "${{ secrets.TAYLORBOT_GITHUB_ACTION }}" with: body: ${{ steps.changelog_reader.outputs.changes }} - tag_name: "v${{ needs.gather_facts.outputs.version }}" - release_name: "v${{ needs.gather_facts.outputs.version }}" + tag: "v${{ needs.gather_facts.outputs.version }}" create-release-branch: name: Create release branch diff --git a/.github/workflows/zz_generated.create_release_pr.yaml b/.github/workflows/zz_generated.create_release_pr.yaml index 40d9bb1b..4c3edcd1 100644 --- a/.github/workflows/zz_generated.create_release_pr.yaml +++ b/.github/workflows/zz_generated.create_release_pr.yaml @@ -1,6 +1,6 @@ # DO NOT EDIT. Generated with: # -# devctl@6.14.0 +# devctl@6.17.1 # name: Create Release PR on: diff --git a/.github/workflows/zz_generated.gitleaks.yaml b/.github/workflows/zz_generated.gitleaks.yaml index 6efd6284..b02c5ff6 100644 --- a/.github/workflows/zz_generated.gitleaks.yaml +++ b/.github/workflows/zz_generated.gitleaks.yaml @@ -1,6 +1,6 @@ # DO NOT EDIT. Generated with: # -# devctl@6.14.0 +# devctl@6.17.1 # name: gitleaks diff --git a/Makefile b/Makefile index 0f7f27b8..06ed5298 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # DO NOT EDIT. Generated with: # -# devctl@6.14.0 +# devctl@6.17.1 # include Makefile.*.mk diff --git a/Makefile.gen.app.mk b/Makefile.gen.app.mk index 3787b357..9fc6224d 100644 --- a/Makefile.gen.app.mk +++ b/Makefile.gen.app.mk @@ -1,6 +1,6 @@ # DO NOT EDIT. Generated with: # -# devctl@6.14.0 +# devctl@6.17.1 # ##@ App diff --git a/Makefile.gen.go.mk b/Makefile.gen.go.mk index e75cab8e..a3abed6d 100644 --- a/Makefile.gen.go.mk +++ b/Makefile.gen.go.mk @@ -1,6 +1,6 @@ # DO NOT EDIT. Generated with: # -# devctl@6.14.0 +# devctl@6.17.1 # APPLICATION := $(shell go list -m | cut -d '/' -f 3) @@ -100,7 +100,7 @@ lint: ## Runs golangci-lint. .PHONY: nancy nancy: ## Runs nancy (requires v1.0.37 or newer). @echo "====> $@" - CGO_ENABLED=0 go list -json -m all | nancy sleuth --skip-update-check --quiet --exclude-vulnerability-file ./.nancy-ignore --additional-exclude-vulnerability-files ./.nancy-ignore.generated + CGO_ENABLED=0 go list -json -deps ./... | nancy sleuth --skip-update-check --quiet --exclude-vulnerability-file ./.nancy-ignore --additional-exclude-vulnerability-files ./.nancy-ignore.generated .PHONY: test test: ## Runs go test with default values.