From eb55a862425275e4067551000be68a6d53570311 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 20 Feb 2024 10:16:08 +0000 Subject: [PATCH] chore(deps): bump the github-actions-dependencies group with 9 updates Bumps the github-actions-dependencies group with 9 updates: | Package | From | To | | --- | --- | --- | | [actions/setup-go](https://github.com/actions/setup-go) | `4.1.0` | `5.0.0` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `3` | `4` | | [asdf-vm/actions](https://github.com/asdf-vm/actions) | `2` | `3` | | [actions/setup-python](https://github.com/actions/setup-python) | `4` | `5` | | [helm/kind-action](https://github.com/helm/kind-action) | `1.8.0` | `1.9.0` | | [docker/login-action](https://github.com/docker/login-action) | `1` | `3` | | [actions/cache](https://github.com/actions/cache) | `3` | `4` | | [metcalfc/changelog-generator](https://github.com/metcalfc/changelog-generator) | `1.0.0` | `4.3.1` | | [actions/stale](https://github.com/actions/stale) | `3.0.14` | `9.0.0` | Updates `actions/setup-go` from 4.1.0 to 5.0.0 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v4.1.0...v5.0.0) Updates `golangci/golangci-lint-action` from 3 to 4 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](https://github.com/golangci/golangci-lint-action/compare/v3...v4) Updates `asdf-vm/actions` from 2 to 3 - [Release notes](https://github.com/asdf-vm/actions/releases) - [Changelog](https://github.com/asdf-vm/actions/blob/master/CHANGELOG.md) - [Commits](https://github.com/asdf-vm/actions/compare/v2...v3) Updates `actions/setup-python` from 4 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v4...v5) Updates `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) Updates `docker/login-action` from 1 to 3 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v1...v3) Updates `actions/cache` from 3 to 4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) Updates `metcalfc/changelog-generator` from 1.0.0 to 4.3.1 - [Release notes](https://github.com/metcalfc/changelog-generator/releases) - [Changelog](https://github.com/metcalfc/changelog-generator/blob/main/release-notes.png) - [Commits](https://github.com/metcalfc/changelog-generator/compare/v1.0.0...v4.3.1) Updates `actions/stale` from 3.0.14 to 9.0.0 - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/stale/compare/v3.0.14...v9.0.0) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: golangci/golangci-lint-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: asdf-vm/actions dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: helm/kind-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: metcalfc/changelog-generator dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/__shared-ci.yml | 14 +++++++------- .github/workflows/release.yml | 10 +++++----- .github/workflows/stale.yml | 2 +- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/__shared-ci.yml b/.github/workflows/__shared-ci.yml index 3341a33..7728cdb 100644 --- a/.github/workflows/__shared-ci.yml +++ b/.github/workflows/__shared-ci.yml @@ -11,11 +11,11 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - name: Install Go - uses: actions/setup-go@v4.1.0 + uses: actions/setup-go@v5.0.0 with: go-version: '1.21' - name: Run linters - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v4 with: version: v1.54 @@ -30,7 +30,7 @@ jobs: uses: actions/checkout@v4 - name: Install Go if: success() - uses: actions/setup-go@v4.1.0 + uses: actions/setup-go@v5.0.0 with: go-version: ${{ matrix.go-version }} - name: Run tests @@ -43,7 +43,7 @@ jobs: uses: actions/checkout@v4 - name: Install Go if: success() - uses: actions/setup-go@v4.1.0 + uses: actions/setup-go@v5.0.0 with: go-version: '1.21' - name: Calc coverage @@ -71,9 +71,9 @@ jobs: # Install tools with asdf - name: Install tools with asdf - uses: asdf-vm/actions/install@v2 + uses: asdf-vm/actions/install@v3 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: '3.9' check-latest: true @@ -95,7 +95,7 @@ jobs: - name: Create kind cluster if: steps.list-changed.outputs.changed == 'true' - uses: helm/kind-action@v1.8.0 + uses: helm/kind-action@v1.9.0 - name: Run chart-testing (install) if: steps.list-changed.outputs.changed == 'true' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fcaaeca..45005d2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,7 +31,7 @@ jobs: steps: # Login to docker hub - name: 🔒 Login to hub - uses: docker/login-action@v1 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_REGISTRY_USER }} password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }} @@ -42,7 +42,7 @@ jobs: # Prepare cache storage - name: ♻️ Cache skaffold dirs - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: cache-skaffold with: @@ -53,7 +53,7 @@ jobs: # Install tools with asdf - name: 📦 Install tools with asdf - uses: asdf-vm/actions/install@v2 + uses: asdf-vm/actions/install@v3 # Run a skaffold build - name: 🏭 Run skaffold build @@ -74,7 +74,7 @@ jobs: # install tools with asdf - name: 📦 Install tools with asdf - uses: asdf-vm/actions/install@v2 + uses: asdf-vm/actions/install@v3 # login to harbor repo - name: 🔒 Login to harbor repo @@ -122,7 +122,7 @@ jobs: - name: Generate changelog id: changelog - uses: metcalfc/changelog-generator@v1.0.0 + uses: metcalfc/changelog-generator@v4.3.1 with: myToken: ${{ steps.generate-token.outputs.token }} diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index dfbeca1..1ccd41c 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -9,7 +9,7 @@ jobs: runs-on: self-hosted steps: - - uses: actions/stale@v3.0.14 + - uses: actions/stale@v9.0.0 with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-issue-message: "This issue is stale"