From 0fc89c5f78c763f058d0192ba40e4f364267c812 Mon Sep 17 00:00:00 2001 From: Mateusz Gozdek Date: Thu, 23 Feb 2023 12:04:49 +0100 Subject: [PATCH] .github/workflows: update actions/checkout to v3 To resolve https://github.com/actions/checkout/issues/1048. Signed-off-by: Mateusz Gozdek --- .github/workflows/ci.yaml | 14 +++++++------- .github/workflows/release.yaml | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 54f983993..8500c7e50 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -17,7 +17,7 @@ jobs: id: go - name: Check out code into the Go module directory - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Run CI checks run: make ci @@ -29,7 +29,7 @@ jobs: timeout-minutes: 10 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Run lint run: make lint check-update-linters @@ -39,7 +39,7 @@ jobs: timeout-minutes: 5 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Codespell test uses: codespell-project/actions-codespell@master with: @@ -55,7 +55,7 @@ jobs: steps: - name: Check out code into the Go module directory - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Test building Docker image run: make image @@ -67,7 +67,7 @@ jobs: steps: - name: Check out code into the Go module directory - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up Go uses: actions/setup-go@v2 @@ -86,7 +86,7 @@ jobs: steps: - name: Check out code into the Go module directory - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Test rendering manifests using kustomize run: make build-kustomize @@ -96,7 +96,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 # Use dedicated action for nice integration with GitHub. - uses: returntocorp/semgrep-action@v1 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 05fa7d5f9..fb2b6f2fe 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -24,7 +24,7 @@ jobs: flavor: latest=false - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup QEMU uses: docker/setup-qemu-action@v1