Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/publish-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:

steps:
- name: ⤵️ Checkout Repository
uses: actions/checkout@v4.2.2
uses: actions/checkout@v6.0.2

- name: ❔ Check for Relevant File Changes
id: changes
Expand Down Expand Up @@ -91,11 +91,11 @@ jobs:

- name: 🏗 Setup Docker Buildx
if: steps.build_decision.outputs.should_build == 'true'
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: 🏗 Cache Docker Layers
if: steps.build_decision.outputs.should_build == 'true'
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: /tmp/.buildx-cache
key: buildx-${{ runner.os }}-${{ matrix.path }}-${{ github.sha }}
Expand All @@ -104,14 +104,14 @@ jobs:

- name: 🔐 Log into docker.io Registry
if: steps.build_decision.outputs.should_build == 'true' && github.event_name != 'pull_request'
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
username: mm25zamanian
password: ${{ secrets.DOCKER_HUB_TOKEN }}

- name: 🔐 Log into ghcr.io Registry
if: steps.build_decision.outputs.should_build == 'true' && github.event_name != 'pull_request'
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ env.REGISTRY_USER }}
Expand All @@ -120,7 +120,7 @@ jobs:
- name: Extract Container Metadata
id: meta
if: steps.build_decision.outputs.should_build == 'true'
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: |
ghcr.io/${{env.REGISTRY_USER}}/${{matrix.name}},enable=true
Expand All @@ -134,7 +134,7 @@ jobs:
- name: 🚀 Build and Push Container Image
id: build-and-push
if: steps.build_decision.outputs.should_build == 'true'
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./${{ matrix.path }}
push: ${{ github.event_name != 'pull_request' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v4.2.2
uses: actions/checkout@v6.0.2

- name: 🚀 Run Label Syncer
uses: micnncim/action-label-syncer@v1.3.0
Expand Down