From 75a280c36b080dae56227c41afbcadf3e1b63950 Mon Sep 17 00:00:00 2001 From: Roman Dodin Date: Sun, 23 Jun 2024 01:53:18 +0300 Subject: [PATCH] update deps in container build stage --- .github/workflows/container-build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/container-build.yml b/.github/workflows/container-build.yml index 2741a83..fb4d9da 100644 --- a/.github/workflows/container-build.yml +++ b/.github/workflows/container-build.yml @@ -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: @@ -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: @@ -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 @@ -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 @@ -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 }} @@ -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