Skip to content

Commit

Permalink
github/workflows: update each action version
Browse files Browse the repository at this point in the history
Signed-off-by: Koichi Shiraishi <zchee.io@gmail.com>
  • Loading branch information
zchee committed Oct 16, 2023
1 parent f8c747a commit 99a0456
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ jobs:
steps:
# https://github.com/actions/checkout
- name: Checkout branch
uses: actions/checkout@v3
uses: actions/checkout@v4

# https://github.com/crazy-max/ghaction-github-runtime
- name: Expose GitHub Runtime for buildkit gha cache
uses: crazy-max/ghaction-github-runtime@v2
uses: crazy-max/ghaction-github-runtime@v3

# https://github.com/docker/login-action#github-container-registry
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand All @@ -38,7 +38,7 @@ jobs:
# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
with:
version: latest
driver-opts: |
Expand All @@ -47,11 +47,11 @@ jobs:
platforms: |
linux/amd64
linux/arm64
buildkitd-flags: --debug --containerd-worker-snapshotter=stargz
buildkitd-flags: --debug

# https://github.com/docker/build-push-action
- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
build-args: |
PUBSUB_EMULATOR_BUILD_NUMBER=${{ env.PUBSUB_EMULATOR_BUILD_NUMBER }}
Expand Down

0 comments on commit 99a0456

Please sign in to comment.