diff options
author | 2023-09-12 21:07:05 +0100 | |
---|---|---|
committer | 2023-09-12 21:07:05 +0100 | |
commit | e3c25ccce52e71ca238e5bdcef232a87a9d5bd9a (patch) | |
tree | 07eedeb3c56475e29827d3a59bcb9463ecefd106 /.github/workflows/build.yml | |
parent | Bump actions/checkout from 3 to 4 (#2) (diff) |
Bump all CI steps to latest versions
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c9aa13d..1940c61 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,15 +25,15 @@ jobs: uses: actions/checkout@v4 - name: Set up QEMU - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 with: buildkitd-flags: ${{ runner.debug && '--debug' || '' }} - name: Login to Github Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.repository_owner }} @@ -43,7 +43,7 @@ jobs: # Repository. The container will be tagged as "latest" # and with the short SHA of the commit. - name: Build and push - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: context: . file: ./Dockerfile |