From 694e41f93798ed9e04f7d7bec41cf53c7a6031bd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 18:40:22 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v4 --- .github/workflows/ci.yaml | 6 +++--- .github/workflows/periodic-security.yaml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 976d6e5..3e921b9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest if: (github.event_name == 'push' || github.event.pull_request.action != 'closed' || github.event.pull_request.merged == true) steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v3 with: go-version: 1.21 @@ -47,7 +47,7 @@ jobs: runs-on: ubuntu-latest if: (github.event_name == 'push' || github.event.pull_request.action != 'closed' || github.event.pull_request.merged == true) steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Run Gosec Security Scanner uses: securego/gosec@master @@ -65,7 +65,7 @@ jobs: runs-on: ubuntu-latest if: (github.event_name == 'push' || github.event.pull_request.merged == true) steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: paulhatch/semantic-version@v4.0.3 diff --git a/.github/workflows/periodic-security.yaml b/.github/workflows/periodic-security.yaml index a774994..f9c5b27 100644 --- a/.github/workflows/periodic-security.yaml +++ b/.github/workflows/periodic-security.yaml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Source - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run Gosec Security Scanner uses: securego/gosec@master