From e61a645505730d69c0742f95f740efacfc29803c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Aug 2023 02:09:37 +0000 Subject: [PATCH] fix(deps): bump actions/checkout from 3.5.2 to 3.6.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.2 to 3.6.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3.5.2...v3.6.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index da8bd19..d738115 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3.5.2 + uses: actions/checkout@v3.6.0 with: token: ${{ secrets.API_GITHUB_TOKEN }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c3accd2..291f77e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,13 +13,13 @@ jobs: steps: - name: Checkout with token if: github.event_name != 'pull_request' - uses: actions/checkout@v3.5.2 + uses: actions/checkout@v3.6.0 with: token: ${{ secrets.API_GITHUB_TOKEN }} - name: Checkout without token if: github.event_name == 'pull_request' - uses: actions/checkout@v3.5.2 + uses: actions/checkout@v3.6.0 - name: Fetch Go version run: |