ci: 更新 GitHub Actions 中的 actions/checkout 版本到 v4

更新 GitHub Actions 配置文件中的 actions/checkout 版本,以使用最新的稳定版本 v4,确保工作流的兼容性和安全性
This commit is contained in:
feige996 2025-05-22 18:52:40 +08:00
parent 261d46eac0
commit c004ec6bfe

View File

@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
token: ${{ secrets.GH_TOKEN_AUTO_MERGE }} token: ${{ secrets.GH_TOKEN_AUTO_MERGE }}