mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/1Panel-dev/1Panel.git
synced 2026-09-20 16:13:59 +08:00
Pin the third-party actions referenced by mutable @master/@main tags to their current commit SHA (tag kept in a trailing comment). Several run in jobs holding secrets: - SonarSource/sonarcloud-github-action@master (sonarcloud-scan.yml) — SONAR_TOKEN - Yikun/hub-mirror-action@master (sync2gitee.yml) — GITEE_PRIVATE_KEY, GITEE_TOKEN - fit2cloud/LLM-CodeReview-Action@main (llm-code-review.yml) — tokens + LLM API key - crate-ci/typos@master (tyops-check.yml) A moved tag would run unreviewed code with those secrets. Behaviour unchanged; per GitHub's guidance to pin actions to a full-length commit SHA. Signed-off-by: Kobi Hikri <kobi.hikri@gmail.com>
16 lines
546 B
YAML
16 lines
546 B
YAML
name: Synchronize to Gitee
|
|
on: [push]
|
|
jobs:
|
|
repo-sync:
|
|
if: github.repository == '1Panel-dev/1Panel'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Mirror the Github organization repos to Gitee.
|
|
uses: Yikun/hub-mirror-action@ba51c01b28a6c9f95a25d4f1bcf6af2a147c0e18 # master
|
|
with:
|
|
src: 'github/1Panel-dev'
|
|
dst: 'gitee/fit2cloud-feizhiyun'
|
|
dst_key: ${{ secrets.GITEE_PRIVATE_KEY }}
|
|
dst_token: ${{ secrets.GITEE_TOKEN }}
|
|
static_list: "1Panel"
|
|
force_update: true |