From c5b9442a9cac91b3b9e68e7871750f5d509ac958 Mon Sep 17 00:00:00 2001 From: Quentin Laplanche Date: Mon, 20 Apr 2026 11:40:25 +0200 Subject: [PATCH] chore: pin GitHub Actions to commit SHA -e Signed-off-by: Quentin Laplanche --- .github/workflows/ci-cd.yml | 4 ++-- .github/workflows/ci-smoketest.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 35be0d3..5669568 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3 with: persist-credentials: false @@ -36,7 +36,7 @@ jobs: uses: docker/setup-buildx-action@v2 - name: Cache Docker layers - uses: actions/cache@v3 + uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # v3 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} diff --git a/.github/workflows/ci-smoketest.yml b/.github/workflows/ci-smoketest.yml index 110bc0e..0969b44 100644 --- a/.github/workflows/ci-smoketest.yml +++ b/.github/workflows/ci-smoketest.yml @@ -11,12 +11,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3 with: persist-credentials: false - name: Install Go - uses: actions/setup-go@v3 + uses: actions/setup-go@be3c94b385c4f180051c996d336f57a34c397495 # v3 with: go-version-file: go.mod