From 2fe73e8cc8083527145930f736f4c19f315d1f92 Mon Sep 17 00:00:00 2001 From: cloudix_mcp_server Date: Fri, 12 Jun 2026 15:35:42 -0400 Subject: [PATCH] fix(ci): correct actions/checkout SHA to valid v4 ref --- .gitea/workflows/pr.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/pr.yaml b/.gitea/workflows/pr.yaml index d088a49..90e6bb7 100644 --- a/.gitea/workflows/pr.yaml +++ b/.gitea/workflows/pr.yaml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@df4cb1c069e1874edd3143118844c72031235010 # v6 + uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 - name: Hadolint uses: hadolint/hadolint-action@2332a7b74a6de0dda2e2221d575162eba76ba5e5 # v3.3.0 continue-on-error: true @@ -18,7 +18,7 @@ jobs: needs: lint steps: - name: Checkout - uses: actions/checkout@df4cb1c069e1874edd3143118844c72031235010 # v6 + uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 - name: Build image run: docker build -t ci-image:${{ github.sha }} . @@ -27,7 +27,7 @@ jobs: needs: build steps: - name: Checkout - uses: actions/checkout@df4cb1c069e1874edd3143118844c72031235010 # v6 + uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 - name: Build image run: docker build -t ci-image:${{ github.sha }} . - name: Run tests