Skip to content

Commit

Permalink
ci/gha: update another action, fix another flag change
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony Worm committed May 2, 2024
1 parent 237c8a9 commit a17b749
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/fmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Set up Docker BuildX
uses: docker/setup-buildx-action@v3
- name: Build Image
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: formatters/tools/${{ matrix.formatter }}
file: formatters/tools/${{ matrix.formatter }}/Dockerfile.debian
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hof.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
version: v24.0.7
env:
SIGN_QEMU_BINARY: "1"
LIMA_START_ARGS: --cpu 3 --memory 10 --disk 12
LIMA_START_ARGS: --cpus 3 --memory 10 --disk 12
if: ${{ startsWith( runner.os, 'macos') }}
- name: Setup MacOS docker socket
run: echo "DOCKER_HOST="unix://$HOME/.colima/default/docker.sock"" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build Image
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: formatters/tools/${{ matrix.formatter }}
file: formatters/tools/${{ matrix.formatter }}/Dockerfile.debian
Expand Down
4 changes: 2 additions & 2 deletions ci/gha/common/steps.cue
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ Steps: {

formatters: {
name: "Build Image"
uses: "docker/build-push-action@v3"
uses: "docker/build-push-action@v5"
with: {
context: "formatters/tools/${{ matrix.formatter }}"
file: "\(context)/Dockerfile.debian"
Expand All @@ -142,7 +142,7 @@ Steps: {
}
env: {
SIGN_QEMU_BINARY: "1"
LIMA_START_ARGS: "--cpu 3 --memory 10 --disk 12"
LIMA_START_ARGS: "--cpus 3 --memory 10 --disk 12"
}
"if": "${{ startsWith( runner.os, 'macos') }}"
}
Expand Down

0 comments on commit a17b749

Please sign in to comment.