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
4 changes: 2 additions & 2 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
image_tag: ${{ steps.meta.outputs.tag }}
environment: ${{ steps.env.outputs.environment }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Determine environment from branch
id: env
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
runs-on: ubuntu-latest
needs: build-and-push
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ github.ref_name }}
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: Secret scan (gitleaks)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -46,7 +46,7 @@ jobs:
# once Dependency Graph is enabled.
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions/dependency-review-action@v4
with:
fail-on-severity: high
Expand All @@ -56,7 +56,7 @@ jobs:
name: Format check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: hashicorp/setup-terraform@v3
with:
Expand All @@ -75,7 +75,7 @@ jobs:
name: Sentinel policy tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install Sentinel
run: |
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
- argocd
- monitoring
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: hashicorp/setup-terraform@v3
with:
Expand All @@ -140,7 +140,7 @@ jobs:
- vault-cluster
- app-cluster
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: hashicorp/setup-terraform@v3
with:
Expand All @@ -164,7 +164,7 @@ jobs:
matrix:
service: [web, auth, catalog, orders, gateway]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: actions/setup-go@v5
with:
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
matrix:
overlay: [dev, staging]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install kubeconform
run: |
Expand All @@ -224,7 +224,7 @@ jobs:
name: Container image scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Build image
run: docker build -t netlix-web:ci app/services/web/
Expand Down Expand Up @@ -278,7 +278,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: actions/setup-python@v5
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/drift-detection.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
name: Terraform fmt + validate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: hashicorp/setup-terraform@v3
with:
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
matrix:
overlay: [dev, staging]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install kubeconform
run: |
Expand All @@ -89,7 +89,7 @@ jobs:
name: Pinned image digests still resolve
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Extract digest-pinned images from manifests
id: extract
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/load-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
LOCUST_MAX_FAIL_RATIO: ${{ inputs.max_fail_ratio }}
LOCUST_MAX_P95_MS: ${{ inputs.max_p95_ms }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: actions/setup-python@v5
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/promote.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
exit 1
fi

- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ inputs.from }}
fetch-depth: 0
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
LOCUST_MAX_FAIL_RATIO: '0.05'
LOCUST_MAX_P95_MS: '2000'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ inputs.from }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
id-token: write
attestations: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: docker/login-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sentinel-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install Sentinel
run: |
Expand Down