ci: enforce ssh checkout on all gitea workflows

Adds ssh-key to actions/checkout configurations and fixes yaml indentation in upload_pck.yml
This commit is contained in:
2026-07-02 15:40:37 +08:00
parent 6da55003e2
commit 187b530cbf
6 changed files with 85 additions and 8 deletions
+12
View File
@@ -15,6 +15,9 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.TEKTON_SSH_KEY }}
ssh-strict: false
- name: Setup Godot
uses: firebelley/godot-action@v3
@@ -38,6 +41,9 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.TEKTON_SSH_KEY }}
ssh-strict: false
- name: Setup Godot
uses: firebelley/godot-action@v3
@@ -75,6 +81,9 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.TEKTON_SSH_KEY }}
ssh-strict: false
- name: Setup Godot
uses: firebelley/godot-action@v3
@@ -94,6 +103,9 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.TEKTON_SSH_KEY }}
ssh-strict: false
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master