From 108d316024a7ace3813170f0ca15577d274c8357 Mon Sep 17 00:00:00 2001 From: Udesh Senaratne Date: Mon, 2 Oct 2023 10:38:51 -0400 Subject: [PATCH] Bump buildx and build-push actions --- .github/workflows/build-and-publish.yml | 6 +++--- README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-publish.yml b/.github/workflows/build-and-publish.yml index 0229f97..f93a5f1 100644 --- a/.github/workflows/build-and-publish.yml +++ b/.github/workflows/build-and-publish.yml @@ -20,10 +20,10 @@ jobs: password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v3 - name: Build and push main image - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v5 with: context: . file: ./Dockerfile @@ -32,7 +32,7 @@ jobs: tags: ${{ secrets.DOCKER_HUB_USERNAME }}/devenv:latest - name: Build and push lite image (no DuckDB support) - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v5 with: context: . file: ./Dockerfile-lite diff --git a/README.md b/README.md index 97319fb..6df16d7 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ The Evidence Docker Development Evironment (devenv) is avaiable on [Dockerhub](h An instance of an `devenv` image can be used as a development environment for Evidence projects using a mounted directory. Using this container allows end users to develop Evidence sites without the need for installing any toolchains besides `Docker`. -This is the repo that builds the Evidence `devenv` images. +This is the repo that builds the [Evidence `devenv` images](https://hub.docker.com/repositories/evidencedev). ## Using the Evidence Docker Development Environment