Skip to content

Commit

Permalink
Bump the actions group across 1 directory with 5 updates (#392)
Browse files Browse the repository at this point in the history
Bumps the actions group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [actions/download-artifact](https://github.com/actions/download-artifact) | `4.1.5` | `4.1.7` |
| [helm/kind-action](https://github.com/helm/kind-action) | `1.9.0` | `1.10.0` |
| [google-github-actions/auth](https://github.com/google-github-actions/auth) | `2.1.2` | `2.1.3` |
| [dependabot/fetch-metadata](https://github.com/dependabot/fetch-metadata) | `2.0.0` | `2.1.0` |
| [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `4` | `6` |



Updates `actions/download-artifact` from 4.1.5 to 4.1.7
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v4.1.5...v4.1.7)

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

Updates `google-github-actions/auth` from 2.1.2 to 2.1.3
- [Release notes](https://github.com/google-github-actions/auth/releases)
- [Changelog](https://github.com/google-github-actions/auth/blob/main/CHANGELOG.md)
- [Commits](google-github-actions/auth@v2.1.2...v2.1.3)

Updates `dependabot/fetch-metadata` from 2.0.0 to 2.1.0
- [Release notes](https://github.com/dependabot/fetch-metadata/releases)
- [Commits](dependabot/fetch-metadata@v2.0.0...v2.1.0)

Updates `golangci/golangci-lint-action` from 4 to 6
- [Release notes](https://github.com/golangci/golangci-lint-action/releases)
- [Commits](golangci/golangci-lint-action@v4...v6)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: actions
- dependency-name: helm/kind-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions
- dependency-name: google-github-actions/auth
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: actions
- dependency-name: dependabot/fetch-metadata
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions
- dependency-name: golangci/golangci-lint-action
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jun 3, 2024
1 parent 23238ad commit 681d1fc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,13 @@ jobs:
fetch-depth: 0

- name: Restore Chart Metadata
uses: actions/download-artifact@v4.1.5
uses: actions/download-artifact@v4.1.7
with:
name: chart-metadata
path: ./charts/${{ needs.meta.outputs.name }}

- name: Restore CRDs Chart Metadata
uses: actions/download-artifact@v4.1.5
uses: actions/download-artifact@v4.1.7
with:
name: crds-chart-metadata
path: ./charts/${{ needs.meta.outputs.name }}-crds
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:

- name: Create kind cluster
if: steps.list-changed.outputs.changed == 'true'
uses: helm/kind-action@v1.9.0
uses: helm/kind-action@v1.10.0

- uses: docker/setup-buildx-action@v3
- uses: docker/metadata-action@v5
Expand Down Expand Up @@ -171,27 +171,27 @@ jobs:
fetch-depth: 0

- name: Restore Chart Metadata
uses: actions/download-artifact@v4.1.5
uses: actions/download-artifact@v4.1.7
with:
name: chart-metadata
path: ./charts/${{ needs.meta.outputs.name }}

- name: Restore Chart Values
uses: actions/download-artifact@v4.1.5
uses: actions/download-artifact@v4.1.7
with:
name: chart-values
path: ./charts/${{ needs.meta.outputs.name }}

- name: Restore CRDs Chart Metadata
uses: actions/download-artifact@v4.1.5
uses: actions/download-artifact@v4.1.7
with:
name: crds-chart-metadata
path: ./charts/${{ needs.meta.outputs.name }}-crds

- id: auth
if: github.actor != 'dependabot[bot]'
name: Authenticate to Google Cloud
uses: google-github-actions/auth@v2.1.2
uses: google-github-actions/auth@v2.1.3
with:
workload_identity_provider: ${{ secrets.NAIS_IO_WORKLOAD_IDENTITY_PROVIDER }}
service_account: ${{ env.SERVICE_ACCOUNT }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2.0.0
uses: dependabot/fetch-metadata@v2.1.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
go-version: "1.22"
cache: false
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
uses: golangci/golangci-lint-action@v6
with:
version: latest
args: --timeout=5m
Expand Down

0 comments on commit 681d1fc

Please sign in to comment.