Fix: Gitea compatibility for checkout actions - downgrade to v4 + add token parameter
Some checks failed
Security & Dependency Updates / Dependency Security Scan (push) Failing after 4s
Security & Dependency Updates / Docker Security Scan (push) Failing after 10s
Security & Dependency Updates / License Compliance (push) Failing after 3s
Security & Dependency Updates / Check for Dependency Updates (push) Failing after 3s
Security & Dependency Updates / Code Quality Metrics (push) Failing after 3s
Security & Dependency Updates / Security Summary (push) Failing after 2s
Some checks failed
Security & Dependency Updates / Dependency Security Scan (push) Failing after 4s
Security & Dependency Updates / Docker Security Scan (push) Failing after 10s
Security & Dependency Updates / License Compliance (push) Failing after 3s
Security & Dependency Updates / Check for Dependency Updates (push) Failing after 3s
Security & Dependency Updates / Code Quality Metrics (push) Failing after 3s
Security & Dependency Updates / Security Summary (push) Failing after 2s
This commit is contained in:
@@ -28,7 +28,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
@@ -74,7 +74,9 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
token: ''
|
||||
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v4
|
||||
@@ -112,7 +114,9 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
token: ''
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
@@ -152,7 +156,9 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
token: ''
|
||||
|
||||
- name: Run Trivy vulnerability scanner
|
||||
uses: aquasecurity/trivy-action@master
|
||||
@@ -181,7 +187,9 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
token: ''
|
||||
|
||||
- name: Deploy to production
|
||||
run: |
|
||||
|
Reference in New Issue
Block a user