ci: Use github.token for authenticated checkout
Some checks failed
Lint & Security / C/C++ Static Analysis (push) Failing after 1s
Lint & Security / Security Flaw Analysis (push) Failing after 1s
Lint & Security / Secret Scanning (push) Failing after 1s
Lint & Security / Shell Script Analysis (push) Failing after 1s

This commit is contained in:
user
2026-02-05 12:06:31 +01:00
parent 033aaccd46
commit 5d8fbd4bf6

View File

@@ -14,7 +14,7 @@ jobs:
- name: Checkout
run: |
git clone --depth=1 --branch=${{ github.ref_name }} \
${{ github.server_url }}/${{ github.repository }}.git .
https://oauth2:${{ github.token }}@git.mymx.me/${{ github.repository }}.git .
- name: Install cppcheck
run: |
@@ -37,7 +37,7 @@ jobs:
- name: Checkout
run: |
git clone --depth=1 --branch=${{ github.ref_name }} \
${{ github.server_url }}/${{ github.repository }}.git .
https://oauth2:${{ github.token }}@git.mymx.me/${{ github.repository }}.git .
- name: Install flawfinder
run: |
@@ -55,7 +55,7 @@ jobs:
- name: Checkout
run: |
git clone --branch=${{ github.ref_name }} \
${{ github.server_url }}/${{ github.repository }}.git .
https://oauth2:${{ github.token }}@git.mymx.me/${{ github.repository }}.git .
- name: Install gitleaks
run: |
@@ -74,7 +74,7 @@ jobs:
- name: Checkout
run: |
git clone --depth=1 --branch=${{ github.ref_name }} \
${{ github.server_url }}/${{ github.repository }}.git .
https://oauth2:${{ github.token }}@git.mymx.me/${{ github.repository }}.git .
- name: Install shellcheck
run: |