Skip to content

Commit

Permalink
chore(deps): bump the github-actions-dependencies group with 9 updates
Browse files Browse the repository at this point in the history
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](actions/setup-go@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](golangci/golangci-lint-action@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](asdf-vm/actions@v2...v3)

Updates `actions/setup-python` from 4 to 5
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v4...v5)

Updates `helm/kind-action` from 1.8.0 to 1.9.0
- [Release notes](https://github.com/helm/kind-action/releases)
- [Commits](helm/kind-action@v1.8.0...v1.9.0)

Updates `docker/login-action` from 1 to 3
- [Release notes](https://github.com/docker/login-action/releases)
- [Commits](docker/login-action@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](actions/cache@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](metcalfc/changelog-generator@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](actions/stale@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] <[email protected]>
  • Loading branch information
dependabot[bot] authored and fredleger committed Feb 20, 2024
1 parent 5b5a473 commit eb55a86
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/__shared-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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'
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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:
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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 }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit eb55a86

Please sign in to comment.