diff --git a/.github/workflows/branch-pipeline.yaml b/.github/workflows/branch-pipeline.yaml index b372f48..8cc7617 100644 --- a/.github/workflows/branch-pipeline.yaml +++ b/.github/workflows/branch-pipeline.yaml @@ -17,7 +17,7 @@ jobs: go-version: '1.24' - name: Check out code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install dependencies run: | @@ -40,7 +40,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/.github/workflows/pr-pipeline.yaml b/.github/workflows/pr-pipeline.yaml index 254760f..e7885e3 100644 --- a/.github/workflows/pr-pipeline.yaml +++ b/.github/workflows/pr-pipeline.yaml @@ -16,7 +16,7 @@ jobs: go-version: '1.24' - name: Check out code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install dependencies run: | @@ -41,7 +41,7 @@ jobs: steps: - name: Check out code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/.github/workflows/release-pipeline.yaml b/.github/workflows/release-pipeline.yaml index adfb4f2..85d8a2b 100644 --- a/.github/workflows/release-pipeline.yaml +++ b/.github/workflows/release-pipeline.yaml @@ -17,7 +17,7 @@ jobs: steps: - name: Check out code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up QEMU uses: docker/setup-qemu-action@v3