Skip to content

Commit

Permalink
update deps in container build stage
Browse files Browse the repository at this point in the history
  • Loading branch information
hellt committed Jun 22, 2024
1 parent 3f30c83 commit 75a280c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/container-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: |
echo "$GITHUB_CONTEXT"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: fabasoad/data-format-converter-action@main
id: matrix
with:
Expand All @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-22.04
needs: prepare-matrix
strategy:
# fail-fast: false
fail-fast: false
matrix: ${{ fromJson(needs.prepare-matrix.outputs.matrix) }}

steps:
Expand All @@ -40,7 +40,7 @@ jobs:
echo "$GITHUB_CONTEXT"
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand All @@ -64,7 +64,7 @@ jobs:
type=sha
- name: Build
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
context: .
load: true
Expand All @@ -78,7 +78,7 @@ jobs:
- name: Login to GitHub Container Registry
if: "!github.event.act"
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand All @@ -90,7 +90,7 @@ jobs:

- name: Build and Push
if: "!github.event.act"
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
context: .
push: true
Expand Down

0 comments on commit 75a280c

Please sign in to comment.