From 71383e01bac64d266843e7e9467f5e8c2c4dcb8d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Mar 2022 23:03:19 +0000 Subject: [PATCH] Bump actions/checkout from 2 to 3 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [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) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/check_version.yaml | 2 +- .github/workflows/docker_feature.yaml | 2 +- .github/workflows/docker_latest.yaml | 2 +- .github/workflows/git_tag.yaml | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check_version.yaml b/.github/workflows/check_version.yaml index 4895ecb..177bc24 100644 --- a/.github/workflows/check_version.yaml +++ b/.github/workflows/check_version.yaml @@ -10,7 +10,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - - uses: actions/checkout@v2 # https://github.com/actions/checkout + - uses: actions/checkout@v3 # https://github.com/actions/checkout - uses: dudo/tag_check@v1.1.1 with: git_tag_prefix: v diff --git a/.github/workflows/docker_feature.yaml b/.github/workflows/docker_feature.yaml index e4203ee..fb952ac 100644 --- a/.github/workflows/docker_feature.yaml +++ b/.github/workflows/docker_feature.yaml @@ -12,7 +12,7 @@ jobs: name: Build and push Docker Image runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 # https://github.com/actions/checkout + - uses: actions/checkout@v3 # https://github.com/actions/checkout - name: Set ENV run: echo INPUT_REPOSITORY=$GITHUB_REPOSITORY/${GITHUB_REPOSITORY##*/} >> $GITHUB_ENV - uses: docker/build-push-action@v1 # https://github.com/marketplace/actions/build-and-push-docker-images diff --git a/.github/workflows/docker_latest.yaml b/.github/workflows/docker_latest.yaml index b9bd9f4..2d591e9 100644 --- a/.github/workflows/docker_latest.yaml +++ b/.github/workflows/docker_latest.yaml @@ -8,7 +8,7 @@ jobs: name: Build and push Docker Image runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 # https://github.com/actions/checkout + - uses: actions/checkout@v3 # https://github.com/actions/checkout - name: Set ENV run: echo INPUT_REPOSITORY=$GITHUB_REPOSITORY/${GITHUB_REPOSITORY##*/} >> $GITHUB_ENV - uses: docker/build-push-action@v1 # https://github.com/marketplace/actions/build-and-push-docker-images diff --git a/.github/workflows/git_tag.yaml b/.github/workflows/git_tag.yaml index 5f31624..42e765a 100644 --- a/.github/workflows/git_tag.yaml +++ b/.github/workflows/git_tag.yaml @@ -12,7 +12,7 @@ jobs: outputs: git_tag_name: ${{ steps.tag_check.outputs.git_tag_name }} steps: - - uses: actions/checkout@v2 # https://github.com/actions/checkout + - uses: actions/checkout@v3 # https://github.com/actions/checkout - uses: dudo/tag_check@v1.1.1 id: tag_check with: @@ -29,7 +29,7 @@ jobs: "https://api.github.com/repos/${GITHUB_REPOSITORY}/git/refs" - name: Set ENV run: echo INPUT_REPOSITORY=$GITHUB_REPOSITORY/${GITHUB_REPOSITORY##*/} >> $GITHUB_ENV - - uses: actions/checkout@v2 # https://github.com/actions/checkout + - uses: actions/checkout@v3 # https://github.com/actions/checkout - name: Push Image to GitHub uses: docker/build-push-action@v1 # https://github.com/marketplace/actions/build-and-push-docker-images with: