From b06fbd754ec6541721b77343316421a7b2b5385d Mon Sep 17 00:00:00 2001 From: "ethpandaops-renovatebot[bot]" <125231822+ethpandaops-renovatebot[bot]@users.noreply.github.com> Date: Tue, 25 Feb 2025 00:26:44 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v4 --- .github/actions/checkpoint-sync/action.yaml | 2 +- .github/workflows/alpha-releases.yaml | 2 +- .github/workflows/golangci-lint.yaml | 2 +- .github/workflows/goreleaser.yaml | 2 +- .github/workflows/integration.yaml | 2 +- .github/workflows/manual-integration.yaml | 2 +- .github/workflows/test.yaml | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/actions/checkpoint-sync/action.yaml b/.github/actions/checkpoint-sync/action.yaml index f5daa116..82c950bc 100644 --- a/.github/actions/checkpoint-sync/action.yaml +++ b/.github/actions/checkpoint-sync/action.yaml @@ -15,7 +15,7 @@ inputs: runs: using: composite steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Prepare environment shell: bash run: | diff --git a/.github/workflows/alpha-releases.yaml b/.github/workflows/alpha-releases.yaml index e42791e1..e4df3cdd 100644 --- a/.github/workflows/alpha-releases.yaml +++ b/.github/workflows/alpha-releases.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 ref: ${{ github.ref }} diff --git a/.github/workflows/golangci-lint.yaml b/.github/workflows/golangci-lint.yaml index 89d28ceb..1f0c6b98 100644 --- a/.github/workflows/golangci-lint.yaml +++ b/.github/workflows/golangci-lint.yaml @@ -18,7 +18,7 @@ jobs: - uses: actions/setup-go@v3 with: go-version: 1.22 - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: golangci-lint uses: golangci/golangci-lint-action@v3 with: diff --git a/.github/workflows/goreleaser.yaml b/.github/workflows/goreleaser.yaml index 286b477b..dd6e604a 100644 --- a/.github/workflows/goreleaser.yaml +++ b/.github/workflows/goreleaser.yaml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Derive release suffix from tag (if it exists) diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index b8910e9f..99be0ffb 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Print details run: | echo "Consensus: ${{ matrix.consensus }}" diff --git a/.github/workflows/manual-integration.yaml b/.github/workflows/manual-integration.yaml index 90e023f5..f5415783 100644 --- a/.github/workflows/manual-integration.yaml +++ b/.github/workflows/manual-integration.yaml @@ -39,7 +39,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 5 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Print details run: | echo "Consensus: ${{ matrix.consensus }}" diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 26a17a59..f0e830a9 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -16,7 +16,7 @@ jobs: steps: - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Go uses: actions/setup-go@v3