Skip to content
Merged
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
# authenticated GHCR access; GitHub-hosted runners have ambient auth, self-hosted ARM do not.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Validate docker-compose.yml
env:
Expand All @@ -42,7 +42,7 @@ jobs:
name: Kustomize Validate
runs-on: [self-hosted, linux, arm64]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up kubectl (includes kustomize)
uses: azure/setup-kubectl@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
exit 1

- name: Checkout deploy config
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup SSH
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/license-integrity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Compute LICENSE ref hash
id: ref-hash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/namespace-cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Run namespace cleanup
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/playground-monitor-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
env:
PLAYGROUND_IP: ${{ github.event.inputs.playground_ip || secrets.PLAYGROUND_IP }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Set up SSH key
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/playground-provision.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:

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

- name: Install hcloud CLI
run: |
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:

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

- name: Setup SSH key
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/playground-proxy-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run:
working-directory: docker/playground/proxy
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: actions/setup-node@v4
with:
node-version: '20'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/playground-proxy-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
name: Deploy sandbox proxy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Set up SSH
run: |
Expand Down
Loading