From e47e085633aeabe5e4f64cd81526908d7e93ec51 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 16:28:47 +0000 Subject: [PATCH 1/7] Bump alpine from 3.19.0 to 3.19.1 in /cicd Bumps alpine from 3.19.0 to 3.19.1. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- cicd/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cicd/Dockerfile b/cicd/Dockerfile index 4ca13131..c3ccf33e 100644 --- a/cicd/Dockerfile +++ b/cicd/Dockerfile @@ -1,7 +1,7 @@ #syntax=docker/dockerfile-upstream:1.5 ARG GO_APP -FROM alpine:3.19.0 as deps +FROM alpine:3.19.1 as deps ARG GO_APP ARG GORELEASER_DIST_DIR=/go/src/dist @@ -28,7 +28,7 @@ RUN < Date: Tue, 9 Apr 2024 12:28:55 -0400 Subject: [PATCH 2/7] Bump azure/setup-helm from 3 to 4 (#169) Bumps [azure/setup-helm](https://github.com/azure/setup-helm) from 3 to 4. - [Release notes](https://github.com/azure/setup-helm/releases) - [Changelog](https://github.com/Azure/setup-helm/blob/main/CHANGELOG.md) - [Commits](https://github.com/azure/setup-helm/compare/v3...v4) --- updated-dependencies: - dependency-name: azure/setup-helm dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/e2e.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index efd46797..8f21013c 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -23,7 +23,7 @@ jobs: uses: helm/kind-action@v1.8.0 - name: set up helm - uses: azure/setup-helm@v3 + uses: azure/setup-helm@v4 - name: run e2e test run: kubectl kuttl test From 7b6d9a906e2d0bd49b48ac5c6ea565ce7fd0add3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 12:29:15 -0400 Subject: [PATCH 3/7] Bump helm/kind-action from 1.8.0 to 1.9.0 (#168) Bumps [helm/kind-action](https://github.com/helm/kind-action) from 1.8.0 to 1.9.0. - [Release notes](https://github.com/helm/kind-action/releases) - [Commits](https://github.com/helm/kind-action/compare/v1.8.0...v1.9.0) --- updated-dependencies: - dependency-name: helm/kind-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/e2e.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 8f21013c..9ea4f901 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -20,7 +20,7 @@ jobs: chmod +x /usr/local/bin/kubectl-kuttl - name: create kind cluster - uses: helm/kind-action@v1.8.0 + uses: helm/kind-action@v1.9.0 - name: set up helm uses: azure/setup-helm@v4 From 11c471611cbf2475a7b70478a80b78961e64261f Mon Sep 17 00:00:00 2001 From: Caleb Lloyd Date: Tue, 9 Apr 2024 12:32:09 -0400 Subject: [PATCH 4/7] fix deps file Signed-off-by: Caleb Lloyd --- .github/workflows/deps-release-detect.yaml | 7 ++++--- .github/workflows/deps-release-tag.yaml | 5 +++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deps-release-detect.yaml b/.github/workflows/deps-release-detect.yaml index 3f8b4057..e5574242 100644 --- a/.github/workflows/deps-release-detect.yaml +++ b/.github/workflows/deps-release-detect.yaml @@ -45,6 +45,7 @@ jobs: "dependencyName": "alpine" } ]' + deps_file="./cicd/tag-deps-version.txt" deps='${{ steps.dependabot-metadata.outputs.updated-dependencies-json }}' @@ -74,10 +75,10 @@ jobs: tagNewVersion="$(semver -i patch "$tagPrevVersion")" - echo "$tagPrevVersion" > ./cicd/tag-deps-version.txt - echo "$tagNewVersion" >> ./cicd/tag-deps-version.txt + echo "$tagPrevVersion" > "$deps_file" + echo "$tagNewVersion" >> "$deps_file" - git add ./cicd/tag-base-version.txt + git add "$deps_file" if git commit -m "bump dependency release to $tagNewVersion"; then push=1 fi diff --git a/.github/workflows/deps-release-tag.yaml b/.github/workflows/deps-release-tag.yaml index 8b3aa898..b0b665ba 100644 --- a/.github/workflows/deps-release-tag.yaml +++ b/.github/workflows/deps-release-tag.yaml @@ -26,9 +26,10 @@ jobs: - id: tag name: Determine tag run: | - old_version="$(head -n 1 ./cicd/tag-deps-version.txt)" + deps_file="./cicd/tag-deps-version.txt" + old_version="$(head -n 1 "$deps_file")" old_ref_name="v$old_version" - new_version="$(tail -n 1 ./cicd/tag-deps-version.txt)" + new_version="$(tail -n 1 "$deps_file")" new_ref_name="v$new_version" create=true From 8af2e7dc184cddb40f986725900144e6e5ff78c2 Mon Sep 17 00:00:00 2001 From: Caleb Lloyd Date: Tue, 9 Apr 2024 12:34:10 -0400 Subject: [PATCH 5/7] comment out actor Signed-off-by: Caleb Lloyd --- .github/workflows/deps-release-detect.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deps-release-detect.yaml b/.github/workflows/deps-release-detect.yaml index e5574242..d7c6bd41 100644 --- a/.github/workflows/deps-release-detect.yaml +++ b/.github/workflows/deps-release-detect.yaml @@ -9,7 +9,7 @@ jobs: detect: name: Detect runs-on: ubuntu-latest - if: ${{ github.actor == 'dependabot[bot]' }} + # if: ${{ github.actor == 'dependabot[bot]' }} steps: - name: Checkout uses: actions/checkout@v4 From 0741e0c96a2bc3884aa1b0268aa09fd3f44cd6bb Mon Sep 17 00:00:00 2001 From: caleblloyd Date: Tue, 9 Apr 2024 16:34:32 +0000 Subject: [PATCH 6/7] bump dependency release to 0.14.2 --- cicd/tag-deps-version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cicd/tag-deps-version.txt b/cicd/tag-deps-version.txt index 21226110..1cbd1525 100644 --- a/cicd/tag-deps-version.txt +++ b/cicd/tag-deps-version.txt @@ -1,2 +1,2 @@ -0.14.0 0.14.1 +0.14.2 From 4a9b39c3fe1e18ac1289f0280fdbc81f7bad44f0 Mon Sep 17 00:00:00 2001 From: Caleb Lloyd Date: Tue, 9 Apr 2024 12:35:39 -0400 Subject: [PATCH 7/7] add back in actor Signed-off-by: Caleb Lloyd --- .github/workflows/deps-release-detect.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deps-release-detect.yaml b/.github/workflows/deps-release-detect.yaml index d7c6bd41..e5574242 100644 --- a/.github/workflows/deps-release-detect.yaml +++ b/.github/workflows/deps-release-detect.yaml @@ -9,7 +9,7 @@ jobs: detect: name: Detect runs-on: ubuntu-latest - # if: ${{ github.actor == 'dependabot[bot]' }} + if: ${{ github.actor == 'dependabot[bot]' }} steps: - name: Checkout uses: actions/checkout@v4