Skip to content

Commit 82fa2f4

Browse files
Merge pull request #183 from rancher/renovate/main-major-gha-deps
Update GitHub Workflow Actions (main) (major)
2 parents ac597b1 + 9d0308f commit 82fa2f4

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
steps:
3838
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
3939
- name : Set up Go
40-
uses: actions/setup-go@bfdd3570ce990073878bf10f6b2d79082de49492 # v2
40+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5
4141
with:
4242
go-version: '1.22'
4343
- name: Check if yq is installed
@@ -55,7 +55,7 @@ jobs:
5555
run: |
5656
sudo wget https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_${{ matrix.arch == 'x64' && 'amd64' || matrix.arch }} -O /usr/bin/yq && sudo chmod +x /usr/bin/yq;
5757
- name : Install helm
58-
uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 # v3
58+
uses: azure/setup-helm@b9e51907a09c216f16ebe8536097933489208112 # v4
5959
with:
6060
token: ${{ secrets.GITHUB_TOKEN }}
6161
- name: Run CI

.github/workflows/integration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
with:
4646
go-version: 1.23
4747
- name : Install helm
48-
uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 # v3
48+
uses: azure/setup-helm@b9e51907a09c216f16ebe8536097933489208112 # v4
4949
with:
5050
token: ${{ secrets.GITHUB_TOKEN }}
5151
- name: Set up Docker Buildx

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
go-version: '1.22'
2525
- name : Install helm
26-
uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 # v3
26+
uses: azure/setup-helm@b9e51907a09c216f16ebe8536097933489208112 # v4
2727
with:
2828
token: ${{ secrets.GITHUB_TOKEN }}
2929
- name: Package helm chart

.github/workflows/pr-debug-publish.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
type=raw,value=pr-${{ github.event.inputs.pr_number }}-${{ needs.prepare_pr_info.outputs.head_sha_short }}
7878
type=raw,value=pr-${{ github.event.inputs.pr_number }}
7979
- name: Build Helm-Project-Operator image
80-
uses: docker/build-push-action@ca052bb54ab0790a636c9b5f226502c73d547a25 # v5
80+
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6
8181
with:
8282
context: .
8383
file: ./package/Dockerfile-helm-project-operator
@@ -120,7 +120,7 @@ jobs:
120120
type=raw,value=pr-${{ github.event.inputs.pr_number }}-${{ needs.prepare_pr_info.outputs.head_sha_short }}
121121
type=raw,value=pr-${{ github.event.inputs.pr_number }}
122122
- name: Build prometheus-federator image
123-
uses: docker/build-push-action@ca052bb54ab0790a636c9b5f226502c73d547a25 # v5
123+
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6
124124
with:
125125
context: .
126126
file: ./package/Dockerfile-prometheus-federator
@@ -141,7 +141,7 @@ jobs:
141141
pull-requests: write
142142
steps:
143143
- name: Comment on PR with image details
144-
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6
144+
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
145145
env:
146146
# meta-helm-locker: ${{ needs.build_dev_helm_locker.outputs.tags }}
147147
meta-helm-project-operator: ${{ needs.build_dev_helm_project_operator.outputs.tags }}

.github/workflows/prom-fed-e2e-ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ jobs:
5959
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
6060
with:
6161
fetch-depth: 0
62-
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4
62+
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5
6363
with:
6464
go-version: '>=1.20.0'
6565
- uses: azure/setup-kubectl@3e0aec4d80787158d308d7b364cb1b702e7feb7f # v4
6666
- name : Install helm
67-
uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 # v3
67+
uses: azure/setup-helm@b9e51907a09c216f16ebe8536097933489208112 # v4
6868
with:
6969
token: ${{ secrets.GITHUB_TOKEN }}
7070
- name: Check if yq is installed

.github/workflows/publish.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ jobs:
5151
if: steps.check_yq.outputs.install_yq == 'true'
5252
run: |
5353
sudo wget https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64 -O /usr/bin/yq && sudo chmod +x /usr/bin/yq;
54-
- uses: azure/setup-kubectl@901a10e89ea615cf61f57ac05cecdf23e7de06d8 # v3
54+
- uses: azure/setup-kubectl@3e0aec4d80787158d308d7b364cb1b702e7feb7f # v4
5555
- name : Install helm
56-
uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 # v3
56+
uses: azure/setup-helm@b9e51907a09c216f16ebe8536097933489208112 # v4
5757
with:
5858
token: ${{ secrets.GITHUB_TOKEN }}
5959
- name: Prepare helm charts (needed for build)
@@ -97,7 +97,7 @@ jobs:
9797
with:
9898
images: ${{ env.GHCR_REGISTRY }}/${{ env.IMAGE_NAME }}/helm-project-operator
9999
- name: Build Helm-Project-Operator image
100-
uses: docker/build-push-action@ca052bb54ab0790a636c9b5f226502c73d547a25 # v5
100+
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6
101101
with:
102102
context: .
103103
file: ./package/Dockerfile-helm-project-operator
@@ -144,7 +144,7 @@ jobs:
144144
- name: Set up Docker Buildx
145145
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
146146
- name: Build Prometheus Federator image
147-
uses: docker/build-push-action@ca052bb54ab0790a636c9b5f226502c73d547a25 # v5
147+
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6
148148
with:
149149
context: .
150150
file: ./package/Dockerfile-prometheus-federator

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
stale:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/stale@a20b814fb01b71def3bd6f56e7494d667ddf28da # v4
14+
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9
1515
with:
1616
stale-issue-message: 'This repository uses an automated workflow to automatically label issues which have not had any activity (commit/comment/label) for 60 days. This helps us manage the community issues better. If the issue is still relevant, please add a comment to the issue so the workflow can remove the label and we know it is still valid. If it is no longer relevant (or possibly fixed in the latest release), the workflow will automatically close the issue in 14 days. Thank you for your contributions.'
1717
stale-pr-message: 'This repository uses an automated workflow to automatically label pull requests which have not had any activity (commit/comment/label) for 60 days. This helps us manage the community pull requests better. If the pull request is still relevant, please add a comment to the pull request so the workflow can remove the label and we know it is still valid. If it is no longer relevant (or possibly fixed in the latest release), the workflow will automatically close the pull request in 14 days. Thank you for your contributions.'

0 commit comments

Comments
 (0)