Skip to content

Commit ce3a05e

Browse files
chore(deps): update github actions updates (#1770)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent bd0e9d3 commit ce3a05e

12 files changed

+27
-27
lines changed

.github/workflows/backport.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- name: Generate GitHub App Token
1212
id: github-app-token
13-
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2
13+
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
1414
with:
1515
app-id: ${{ secrets.CLOUDOPERATOR_APP_ID }}
1616
private-key: ${{ secrets.CLOUDOPERATOR_APP_PRIVATE_KEY }}

.github/workflows/build-greenhousectl.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fetch-depth: 0
2121
token: ${{ secrets.GITHUB_TOKEN }}
2222
- name: Set up Go
23-
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6
23+
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
2424
with:
2525
go-version-file: 'go.mod'
2626
token: ${{ secrets.GITHUB_TOKEN }}
@@ -29,7 +29,7 @@ jobs:
2929
- name: cleanup autogenerated files
3030
run: git checkout .
3131
- name: release
32-
uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6
32+
uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6.4.0
3333
with:
3434
distribution: goreleaser
3535
version: ${{ vars.GITHUB_SHA }}

.github/workflows/check-changes-crd-api.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
- name: Generate GitHub App Token
2626
id: github-app-token
27-
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2
27+
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
2828
with:
2929
app-id: ${{ secrets.CLOUDOPERATOR_APP_ID }}
3030
private-key: ${{ secrets.CLOUDOPERATOR_APP_PRIVATE_KEY }}
@@ -43,7 +43,7 @@ jobs:
4343
make generate-all
4444
4545
- name: Apply Changes
46-
uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9
46+
uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9.1.4
4747
with:
4848
author_name: cloud-operator-bot[bot]
4949
author_email: 224791424+cloud-operator-bot[bot]@users.noreply.github.com

.github/workflows/ci-pr-title.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: [ ubuntu-latest ]
1515
steps:
1616
- name: CI Check Title
17-
uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6
17+
uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1
1818
env:
1919
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2020
with:

.github/workflows/ci-release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
fetch-depth: 0
1919
token: ${{ secrets.GITHUB_TOKEN }}
2020
- name: Set up Go
21-
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6
21+
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
2222
with:
2323
go-version-file: 'go.mod'
2424
token: ${{ secrets.GITHUB_TOKEN }}
2525
- name: release
26-
uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6
26+
uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6.4.0
2727
with:
2828
distribution: goreleaser
2929
version: ${{ vars.GITHUB_SHA }}
@@ -40,7 +40,7 @@ jobs:
4040
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4141
- name: Release
4242
if: startsWith(github.ref, 'refs/tags/')
43-
uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b # v2
43+
uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b # v2.5.0
4444
with:
4545
draft: true
4646
generate_release_notes: false

.github/workflows/docker-build.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ jobs:
4040

4141
# Set up QEMU for cross-platform builds
4242
- name: Set up QEMU
43-
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130 # v3
43+
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130 # v3.7.0
4444

4545
# Set up BuildKit Docker container builder to be able to build
4646
# multi-platform images and export cache
4747
# https://github.com/docker/setup-buildx-action
4848
- name: Set up Docker Buildx
49-
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3
49+
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
5050
with:
5151
driver-opts: |
5252
image=moby/buildkit:latest
@@ -55,7 +55,7 @@ jobs:
5555
# https://github.com/docker/login-action
5656
- name: Log into registry ${{ env.REGISTRY }}
5757
if: github.event_name != 'pull_request'
58-
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
58+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
5959
with:
6060
registry: ${{ env.REGISTRY }}
6161
username: ${{ github.actor }}
@@ -65,7 +65,7 @@ jobs:
6565
# https://github.com/docker/metadata-action
6666
- name: Extract Docker metadata
6767
id: meta
68-
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5
68+
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0
6969
with:
7070
images: ${{ env.REGISTRY }}/${{ github.repository_owner }}/greenhouse
7171
tags: |
@@ -84,7 +84,7 @@ jobs:
8484
# https://github.com/docker/build-push-action
8585
- name: Build and push Docker image
8686
id: build-and-push
87-
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
87+
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
8888
with:
8989
context: .
9090
push: ${{ github.event_name != 'pull_request' }}
@@ -133,7 +133,7 @@ jobs:
133133
severity: 'CRITICAL,HIGH,MEDIUM'
134134

135135
- name: Upload Trivy scan results to GitHub Security tab
136-
uses: github/codeql-action/upload-sarif@6bc82e05fd0ea64601dd4b465378bbcf57de0314 # v4
136+
uses: github/codeql-action/upload-sarif@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v4.31.10
137137
if: always()
138138
with:
139139
sarif_file: trivy-results.sarif

.github/workflows/helm-lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
version: "v3.19.2"
2323

24-
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
24+
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
2525
with:
2626
python-version: 3.14
2727
check-latest: true

.github/workflows/helm-push.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ jobs:
4242
with:
4343
version: "v3.19.2"
4444

45-
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
45+
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
4646
with:
4747
python-version: 3.14
4848
check-latest: true
4949
token: ${{ secrets.GITHUB_TOKEN }}
5050

5151
- name: Log into registry ${{ env.REGISTRY }}
5252
if: github.event_name != 'pull_request'
53-
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
53+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
5454
with:
5555
registry: ${{ env.REGISTRY }}
5656
username: ${{ github.actor }}

.github/workflows/kustomize-lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
token: ${{ secrets.GITHUB_TOKEN }}
1414

1515
- name: Set up Go
16-
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6
16+
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
1717
with:
1818
go-version-file: 'go.mod'
1919
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/license.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- name: Generate GitHub App Token
1414
id: github-app-token
15-
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2
15+
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
1616
with:
1717
app-id: ${{ secrets.CLOUDOPERATOR_APP_ID }}
1818
private-key: ${{ secrets.CLOUDOPERATOR_APP_PRIVATE_KEY }}

0 commit comments

Comments
 (0)