diff options
author | 2023-03-26 21:02:40 +0100 | |
---|---|---|
committer | 2023-03-26 21:02:40 +0100 | |
commit | 981cc11255dd07f9a7efdfbbc5a5c4b290245ba2 (patch) | |
tree | 1b7ef560f231d1cbfdc5f58f20b5d6ce10a9469c | |
parent | Add dependabot CI config (diff) |
Update CI action versions
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5e0ebad..d495bed 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,7 +28,7 @@ jobs: uses: docker/setup-buildx-action@v2 - name: Login to Github Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: ghcr.io username: ${{ github.repository_owner }} @@ -38,7 +38,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@v2 + uses: docker/build-push-action@v4 with: context: . file: ./Dockerfile |