Skip to content

Commit eb55a86

Browse files
dependabot[bot]fredleger
authored andcommitted
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](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] <support@github.com>
1 parent 5b5a473 commit eb55a86

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/__shared-ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
- name: Checkout code
1212
uses: actions/checkout@v4
1313
- name: Install Go
14-
uses: actions/setup-go@v4.1.0
14+
uses: actions/setup-go@v5.0.0
1515
with:
1616
go-version: '1.21'
1717
- name: Run linters
18-
uses: golangci/golangci-lint-action@v3
18+
uses: golangci/golangci-lint-action@v4
1919
with:
2020
version: v1.54
2121

@@ -30,7 +30,7 @@ jobs:
3030
uses: actions/checkout@v4
3131
- name: Install Go
3232
if: success()
33-
uses: actions/setup-go@v4.1.0
33+
uses: actions/setup-go@v5.0.0
3434
with:
3535
go-version: ${{ matrix.go-version }}
3636
- name: Run tests
@@ -43,7 +43,7 @@ jobs:
4343
uses: actions/checkout@v4
4444
- name: Install Go
4545
if: success()
46-
uses: actions/setup-go@v4.1.0
46+
uses: actions/setup-go@v5.0.0
4747
with:
4848
go-version: '1.21'
4949
- name: Calc coverage
@@ -71,9 +71,9 @@ jobs:
7171

7272
# Install tools with asdf
7373
- name: Install tools with asdf
74-
uses: asdf-vm/actions/install@v2
74+
uses: asdf-vm/actions/install@v3
7575

76-
- uses: actions/setup-python@v4
76+
- uses: actions/setup-python@v5
7777
with:
7878
python-version: '3.9'
7979
check-latest: true
@@ -95,7 +95,7 @@ jobs:
9595

9696
- name: Create kind cluster
9797
if: steps.list-changed.outputs.changed == 'true'
98-
uses: helm/kind-action@v1.8.0
98+
uses: helm/kind-action@v1.9.0
9999

100100
- name: Run chart-testing (install)
101101
if: steps.list-changed.outputs.changed == 'true'

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
# Login to docker hub
3333
- name: 🔒 Login to hub
34-
uses: docker/login-action@v1
34+
uses: docker/login-action@v3
3535
with:
3636
username: ${{ secrets.DOCKERHUB_REGISTRY_USER }}
3737
password: ${{ secrets.DOCKERHUB_REGISTRY_PASSWORD }}
@@ -42,7 +42,7 @@ jobs:
4242

4343
# Prepare cache storage
4444
- name: ♻️ Cache skaffold dirs
45-
uses: actions/cache@v3
45+
uses: actions/cache@v4
4646
env:
4747
cache-name: cache-skaffold
4848
with:
@@ -53,7 +53,7 @@ jobs:
5353
5454
# Install tools with asdf
5555
- name: 📦 Install tools with asdf
56-
uses: asdf-vm/actions/install@v2
56+
uses: asdf-vm/actions/install@v3
5757

5858
# Run a skaffold build
5959
- name: 🏭 Run skaffold build
@@ -74,7 +74,7 @@ jobs:
7474

7575
# install tools with asdf
7676
- name: 📦 Install tools with asdf
77-
uses: asdf-vm/actions/install@v2
77+
uses: asdf-vm/actions/install@v3
7878

7979
# login to harbor repo
8080
- name: 🔒 Login to harbor repo
@@ -122,7 +122,7 @@ jobs:
122122

123123
- name: Generate changelog
124124
id: changelog
125-
uses: metcalfc/changelog-generator@v1.0.0
125+
uses: metcalfc/changelog-generator@v4.3.1
126126
with:
127127
myToken: ${{ steps.generate-token.outputs.token }}
128128

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: self-hosted
1010

1111
steps:
12-
- uses: actions/stale@v3.0.14
12+
- uses: actions/stale@v9.0.0
1313
with:
1414
repo-token: ${{ secrets.GITHUB_TOKEN }}
1515
stale-issue-message: "This issue is stale"

0 commit comments

Comments
 (0)