Skip to content

Commit 96f1b5c

Browse files
Bump actions/checkout from 4 to 6 (#222)
* Bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Update Zizmor linter rules, modify infra workflow to disable credential persistence * chore: update devDependencies to include @dataform/cli version 3.0.43 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Max Ostapenko <1611259+max-ostapenko@users.noreply.github.com>
1 parent ac9489a commit 96f1b5c

5 files changed

Lines changed: 2358 additions & 111 deletions

File tree

.github/linters/zizmor.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ rules:
22
unpinned-uses:
33
ignore:
44
- ci.yaml
5+
- infra.yaml

.github/workflows/infra.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- main
77
paths:
8-
- 'infra/**'
8+
- "infra/**"
99

1010
concurrency:
1111
group: ${{ github.workflow }}-${{ github.ref }}
@@ -21,13 +21,15 @@ jobs:
2121

2222
steps:
2323
- name: Checkout code
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v6
25+
with:
26+
persist-credentials: false
2527

2628
- name: Authenticate with Google Cloud
2729
uses: google-github-actions/auth@v3
2830
with:
29-
project_id: 'httparchive'
30-
credentials_json: '${{ secrets.GCP_SA_KEY }}'
31+
project_id: "httparchive"
32+
credentials_json: "${{ secrets.GCP_SA_KEY }}"
3133

3234
- name: Set up Terraform
3335
uses: hashicorp/setup-terraform@v3.1.2

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
**/node_modules/
21
.DS_Store
2+
.vscode/
3+
**/node_modules/
34
**/.terraform/
45
.env

0 commit comments

Comments
 (0)