From 92a40e35a010d469288709308236fad32a93891e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Oct 2022 20:03:48 +0000 Subject: [PATCH] ci(deps): bump actions/checkout from 2 to 3.1.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.1.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/v2...v3.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 12 ++++++------ .github/workflows/post-major-release.yml | 2 +- .github/workflows/post-release.yml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1783c75..b461a6f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 - name: Install nodejs uses: actions/setup-node@v2 @@ -35,7 +35,7 @@ jobs: needs: build steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 - name: Download build artifact uses: actions/download-artifact@v2 @@ -83,7 +83,7 @@ jobs: FOREIGN_REPO: gliech/dotfiles steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 - name: Download build artifact uses: actions/download-artifact@v2 @@ -130,7 +130,7 @@ jobs: needs: build steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 - name: Download build artifact uses: actions/download-artifact@v2 @@ -157,7 +157,7 @@ jobs: needs: build steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 - name: Download build artifact uses: actions/download-artifact@v2 @@ -192,7 +192,7 @@ jobs: - test_organization steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 with: persist-credentials: false diff --git a/.github/workflows/post-major-release.yml b/.github/workflows/post-major-release.yml index ec98312..ee2d235 100644 --- a/.github/workflows/post-major-release.yml +++ b/.github/workflows/post-major-release.yml @@ -16,7 +16,7 @@ jobs: echo "::set-output name=main::${GIT_REF:10:2}" - name: Checkout new release - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 - name: Create branch for pointer run: | diff --git a/.github/workflows/post-release.yml b/.github/workflows/post-release.yml index 8dc9fab..2a61b3b 100644 --- a/.github/workflows/post-release.yml +++ b/.github/workflows/post-release.yml @@ -17,7 +17,7 @@ jobs: echo "::set-output name=main::${GIT_REF:10:2}" - name: Checkout major version branch - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 with: fetch-depth: 0 ref: ${{ steps.version-prefix.outputs.main }}