From 4ce7a8f7de683414ff73d40437ee95c3775be3fd Mon Sep 17 00:00:00 2001 From: Rajpal Chauhan Date: Wed, 17 Jan 2024 13:57:18 -0800 Subject: [PATCH] updating version Signed-off-by: Rajpal Chauhan --- .github/workflows/main.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index f658292f..31326693 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -27,8 +27,8 @@ jobs: include: - service: aries-endorser-agent GIT_REPO_URL: bcgov/aries-endorser-service - SOURCE_CONTEXT_DIR: docker/acapy - DOCKER_FILE_PATH: Dockerfile.acapy + SOURCE_CONTEXT_DIR: docker/acapy # The context dir, context, sets the context for the build. i.e. where the build will source files from. + DOCKER_FILE_PATH: Dockerfile.acapy # The docker path, file, is the relative path to the docker file from the root of the repo. # - service: aries-endorser-db # GIT_REPO_URL: bcgov/aries-endorser-service # DOCKER_FILE_PATH: @@ -58,10 +58,10 @@ jobs: ls -l - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Log in to the GHCR - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} @@ -69,7 +69,7 @@ jobs: - name: Prepare docker tags for image id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: images: ghcr.io/bcgov/dts-endorser-service/${{ matrix.service }} flavor: | @@ -85,7 +85,7 @@ jobs: - name: Build and push Docker image id: docker_build - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v5 with: context: ${{ matrix.SOURCE_CONTEXT_DIR }} file: ${{ matrix.SOURCE_CONTEXT_DIR }}/${{ matrix.DOCKER_FILE_PATH }} @@ -111,7 +111,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Deploy to ${{ env.ENVIRONMENT }} uses: ./.github/workflows/actions/deploy