Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Run actionlint
uses: rhysd/actionlint@v1.7.12
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/admin-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
AWS_REGION: us-east-1
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Configure AWS credentials via OIDC
uses: aws-actions/configure-aws-credentials@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto-recover-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:

- name: Checkout (shallow)
if: steps.pr.outputs.number != ''
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/changelog-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:

- name: Checkout
if: github.event_name == 'pull_request'
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Initialize CodeQL
uses: github/codeql-action/init@v4
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
security-events: write
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Scan IAM resource="*" outside allowlist
continue-on-error: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gitleaks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/image-bake-on-change.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
any: ${{ steps.compute.outputs.any }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Run path filter per service
id: filter
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/image-bake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
tag: ${{ steps.resolve-tag.outputs.tag }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Resolve tag
id: resolve-tag
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
# Need full history so the bot can branch off main cleanly.
fetch-depth: 0
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/license-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
services: ${{ steps.scope.outputs.python_services }}
has-services: ${{ steps.scope.outputs.python_has_changes }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
- id: scope
Expand All @@ -73,7 +73,7 @@ jobs:
matrix:
service: ${{ fromJson(needs.detect-python-services.outputs.services) }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install uv
uses: astral-sh/setup-uv@v7
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
services: ${{ steps.scope.outputs.typescript_services }}
has-services: ${{ steps.scope.outputs.typescript_has_changes }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
- id: scope
Expand All @@ -132,7 +132,7 @@ jobs:
matrix:
service: ${{ fromJson(needs.detect-ts-services.outputs.services) }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Node.js
uses: actions/setup-node@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/openapi-schema-drift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- services/cost-api
- services/admin-api
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install uv
uses: astral-sh/setup-uv@v7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/panakoes-site-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Verify static directory exists
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
has-services: ${{ steps.scope.outputs.python_has_changes }}
docs-only: ${{ steps.scope.outputs.docs_only }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
# The detect-changed-services composite uses
# `git diff BASE...HEAD`; that needs both sides reachable.
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
matrix:
service: ${{ fromJson(needs.detect-services.outputs.services) }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install uv
uses: astral-sh/setup-uv@v7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
persist-credentials: false

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/terraform-apply-on-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
has_changes: ${{ steps.changed.outputs.has_changes }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Terraform
uses: hashicorp/setup-terraform@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/terraform-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Terraform
uses: hashicorp/setup-terraform@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/terraform-plan-on-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
has_changes: ${{ steps.changed.outputs.has_changes }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
# Full history so `origin/main...HEAD` resolves on PRs from
# forks or long-lived branches.
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
module: ${{ fromJson(needs.detect-modules.outputs.modules) }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Terraform
uses: hashicorp/setup-terraform@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Run Trivy filesystem scan (SARIF)
uses: aquasecurity/trivy-action@v0.36.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/vitest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
has-services: ${{ steps.scope.outputs.typescript_has_changes }}
docs-only: ${{ steps.scope.outputs.docs_only }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
- id: scope
Expand All @@ -44,7 +44,7 @@ jobs:
matrix:
service: ${{ fromJson(needs.detect-services.outputs.services) }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Node.js
uses: actions/setup-node@v6
Expand Down
Loading