From 22988aefdf38e115b2eef2ae6977b69ff122db93 Mon Sep 17 00:00:00 2001 From: "vinted-renovate[bot]" <142873330+vinted-renovate[bot]@users.noreply.github.com> Date: Wed, 4 Oct 2023 14:36:36 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v4 --- .github/workflows/cloudsmith.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/semgrep.yml | 2 +- .github/workflows/unit-tests.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cloudsmith.yml b/.github/workflows/cloudsmith.yml index 13068d7..aa153c4 100644 --- a/.github/workflows/cloudsmith.yml +++ b/.github/workflows/cloudsmith.yml @@ -15,7 +15,7 @@ jobs: CS_REPOSITORY: ${{ secrets.CS_REPOSITORY }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-python@v4 # For cloudsmith-cli with: python-version: '3.10' diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 457845a..f057271 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/setup-go@v3 with: go-version: 1.21 - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: golangci-lint uses: golangci/golangci-lint-action@07341d3490e932bea2126ce313f1c3904a362b8a with: diff --git a/.github/workflows/semgrep.yml b/.github/workflows/semgrep.yml index 8b0b7ae..42d27d4 100644 --- a/.github/workflows/semgrep.yml +++ b/.github/workflows/semgrep.yml @@ -13,5 +13,5 @@ jobs: if: (github.actor != 'dependabot[bot]') steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: semgrep --config=p/ci --config=p/golang --error --metrics=off diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index d07e530..f2a277d 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -5,7 +5,7 @@ jobs: unit-tests: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Go uses: actions/setup-go@v3