Skip to content

Commit

Permalink
fix: Bump ci
Browse files Browse the repository at this point in the history
  • Loading branch information
NoUseFreak committed Mar 1, 2024
1 parent f096998 commit 0d09881
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/image-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Current
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Docker meta
id: meta
uses: docker/metadata-action@v3
uses: docker/metadata-action@v5
with:
images: ${{ env.DOCKER_IMAGE }}
tags: |
Expand All @@ -38,14 +38,14 @@ jobs:
uses: docker/setup-buildx-action@v2

- name: Login to GHCR
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
context: ${{ env.DOCKER_CONTEXT_DIR }}
platforms: ${{ inputs.docker_platforms }}
Expand All @@ -64,7 +64,7 @@ jobs:
new_release_version: "${{ steps.semantic.outputs.new_release_version }}"
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -102,11 +102,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Current
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Docker meta
id: meta
uses: docker/metadata-action@v3
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: ${{ env.DOCKER_IMAGE }}
Expand All @@ -124,14 +124,14 @@ jobs:
uses: docker/setup-buildx-action@v2

- name: Login to GHCR
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
context: ${{ env.DOCKER_CONTEXT_DIR }}
platforms: ${{ env.DOCKER_PLATFORMS }}
Expand Down

0 comments on commit 0d09881

Please sign in to comment.