Skip to content

Commit 9fea85d

Browse files
Bump the actions group across 1 directory with 6 updates
Bumps the actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [google-github-actions/auth](https://github.com/google-github-actions/auth) | `2` | `3` | | [actions/setup-go](https://github.com/actions/setup-go) | `5` | `6` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | | [terraform-linters/setup-tflint](https://github.com/terraform-linters/setup-tflint) | `4` | `5` | Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `google-github-actions/auth` from 2 to 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...v3) Updates `actions/setup-go` from 5 to 6 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v5...v6) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) Updates `terraform-linters/setup-tflint` from 4 to 5 - [Release notes](https://github.com/terraform-linters/setup-tflint/releases) - [Commits](terraform-linters/setup-tflint@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: google-github-actions/auth dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: terraform-linters/setup-tflint dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 0a46c87 commit 9fea85d

9 files changed

+25
-25
lines changed

.github/workflows/comment-deployment-plan-pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
issues: read
3333
pull-requests: write
3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v5
3636
- run: pip install requests
3737
- run: python extra-scripts/comment-deployment-plan-pr.py
3838
env:

.github/workflows/comment-test-link-merged-pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
actions: read
2121
pull-requests: write
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
- run: pip install requests
2525
- run: python extra-scripts/comment-test-link-merged-pr.py
2626
env:

.github/workflows/deploy-grafana-dashboards.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ jobs:
5656
- cluster_name: heliophysics
5757

5858
steps:
59-
- uses: actions/checkout@v4
59+
- uses: actions/checkout@v5
6060

61-
- uses: actions/setup-python@v5
61+
- uses: actions/setup-python@v6
6262
with:
6363
python-version: '3.13'
6464

@@ -76,7 +76,7 @@ jobs:
7676
uses: mdgreenwald/[email protected]
7777

7878
- name: Setup sops credentials to decrypt repo secrets
79-
uses: google-github-actions/auth@v2
79+
uses: google-github-actions/auth@v3
8080
with:
8181
credentials_json: ${{ secrets.GCP_KMS_DECRYPTOR_KEY }}
8282

.github/workflows/deploy-hubs.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ jobs:
7373
prod-jobs: ${{ steps.generate-jobs.outputs.prod-jobs }}
7474

7575
steps:
76-
- uses: actions/checkout@v4
76+
- uses: actions/checkout@v5
7777

78-
- uses: actions/setup-python@v5
78+
- uses: actions/setup-python@v6
7979
with:
8080
python-version: '3.13'
81-
- uses: actions/setup-go@v5
81+
- uses: actions/setup-go@v6
8282

8383
# There will almost never be a cache hit on the cache key when this job is
8484
# run, as it is the first of all jobs in this workflow. An exception is if
@@ -96,7 +96,7 @@ jobs:
9696
go install github.com/google/go-jsonnet/cmd/[email protected]
9797
9898
- name: Get merged/open PR labels
99-
uses: actions/github-script@v7
99+
uses: actions/github-script@v8
100100
id: pr-labels
101101
with:
102102
# Both pull_request and push can have triggered this job to run. A
@@ -255,7 +255,7 @@ jobs:
255255
jobs: ${{ fromJson(needs.generate-jobs.outputs.support-jobs) }}
256256

257257
steps:
258-
- uses: actions/checkout@v4
258+
- uses: actions/checkout@v5
259259

260260
- name: Setup deploy for ${{ matrix.jobs.cluster_name }}
261261
uses: ./.github/actions/setup-deploy
@@ -492,7 +492,7 @@ jobs:
492492
failure_heliophysics_staging: ${{ steps.declare-failure.outputs.failure_heliophysics_staging }}
493493

494494
steps:
495-
- uses: actions/checkout@v4
495+
- uses: actions/checkout@v5
496496

497497
- name: Setup deploy for ${{ matrix.jobs.cluster_name }} cluster
498498
uses: ./.github/actions/setup-deploy
@@ -630,7 +630,7 @@ jobs:
630630
jobs: ${{ fromJson(needs.filter-failed-staging.outputs.prod-jobs) }}
631631

632632
steps:
633-
- uses: actions/checkout@v4
633+
- uses: actions/checkout@v5
634634

635635
- name: Setup deploy for ${{ matrix.jobs.cluster_name }} cluster
636636
uses: ./.github/actions/setup-deploy

.github/workflows/ensure-uptime-checks.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929

3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v5
3232

3333
# Uptime checks are set up and managed via terraform
3434
- uses: hashicorp/setup-terraform@v3
@@ -40,7 +40,7 @@ jobs:
4040

4141
# Authenticate with the correct KMS key that sops will use.
4242
- name: Setup sops credentials to decrypt repo secrets
43-
uses: google-github-actions/auth@v2
43+
uses: google-github-actions/auth@v3
4444
with:
4545
credentials_json: ${{ secrets.GCP_KMS_DECRYPTOR_KEY }}
4646

.github/workflows/terraform-lint.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
lint:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
- uses: hashicorp/setup-terraform@v3
14-
- uses: terraform-linters/setup-tflint@v4
14+
- uses: terraform-linters/setup-tflint@v5
1515
- name: Run terraform linter
1616
run: |
1717
cd terraform

.github/workflows/test-deployer-code.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
test-deployer:
2828
runs-on: ubuntu-latest
2929
steps:
30-
- uses: actions/checkout@v4
31-
- uses: actions/setup-python@v5
30+
- uses: actions/checkout@v5
31+
- uses: actions/setup-python@v6
3232
with:
3333
python-version: '3.13'
3434
- name: Install dependencies

.github/workflows/test-docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
test-docs:
2222
runs-on: ubuntu-22.04
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
with:
2626
fetch-depth: 0
27-
- uses: actions/setup-python@v5
27+
- uses: actions/setup-python@v6
2828
with:
2929
python-version: '3.13'
3030

.github/workflows/validate-clusters.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ jobs:
7979
(github.event_name == 'pull_request' && contains(github.head_ref, fromJson('["dependabot", "pre-commit"]')) == false)
8080
8181
steps:
82-
- uses: actions/checkout@v4
83-
- uses: actions/setup-python@v5
82+
- uses: actions/checkout@v5
83+
- uses: actions/setup-python@v6
8484
with:
8585
python-version: '3.13'
8686

@@ -210,11 +210,11 @@ jobs:
210210
jobs: ${{ fromJson(needs.generate-clusters-to-validate.outputs.cluster_matrix) }}
211211

212212
steps:
213-
- uses: actions/checkout@v4
214-
- uses: actions/setup-python@v5
213+
- uses: actions/checkout@v5
214+
- uses: actions/setup-python@v6
215215
with:
216216
python-version: '3.13'
217-
- uses: actions/setup-go@v5
217+
- uses: actions/setup-go@v6
218218

219219
- name: Install deployer module dependencies
220220
run: |

0 commit comments

Comments
 (0)