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