From 5464df6dfa0068398e529dcc491536f26416cbf3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 27 Sep 2022 10:34:38 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v3 --- .github/workflows/build-on-branch.yml | 2 +- .github/workflows/build-on-tag.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-on-branch.yml b/.github/workflows/build-on-branch.yml index cc47784..e34d901 100644 --- a/.github/workflows/build-on-branch.yml +++ b/.github/workflows/build-on-branch.yml @@ -9,7 +9,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Build run: docker build . -t tandrade/short:latest - name: Login diff --git a/.github/workflows/build-on-tag.yml b/.github/workflows/build-on-tag.yml index a8b2afb..e754385 100644 --- a/.github/workflows/build-on-tag.yml +++ b/.github/workflows/build-on-tag.yml @@ -9,7 +9,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Build run: docker build . -t tandrade/short:${GITHUB_REF/refs\/tags\//} - name: Login