From f57bfade8ec448689cacd3fc347c0d9341d8816a Mon Sep 17 00:00:00 2001 From: Martin Redolatti Date: Tue, 15 Nov 2022 13:43:48 -0300 Subject: [PATCH] use docker build push v3 --- .github/workflows/cd.yml | 6 +++--- .github/workflows/ci.yml | 2 +- .github/workflows/unstable.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index e0c56a4f..c5b3ff92 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -19,7 +19,7 @@ jobs: - 6379:6379 steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 @@ -83,13 +83,13 @@ jobs: password: ${{ secrets.ARTIFACTORY_DOCKER_PASS }} - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Get version run: echo "VERSION=$(tail -n 1 splitio/version.go | awk '{print $4}' | tr -d '"')" >> $GITHUB_ENV - name: Docker Build and Push - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v3 with: context: . file: docker/Dockerfile.${{ matrix.mode }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 34caa508..7e399446 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,7 +66,7 @@ jobs: uses: actions/checkout@v3 - name: Docker Build and Push - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v3 with: context: . file: docker/Dockerfile.${{ matrix.mode }} diff --git a/.github/workflows/unstable.yml b/.github/workflows/unstable.yml index 4345997d..14a36dc8 100644 --- a/.github/workflows/unstable.yml +++ b/.github/workflows/unstable.yml @@ -26,7 +26,7 @@ jobs: run: echo "SHORT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_ENV - name: Docker Build and Push - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v3 with: context: . file: docker/Dockerfile.${{ matrix.mode }}