Skip to content

Commit

Permalink
fix: bump to latest version of docker build to address provenance issue
Browse files Browse the repository at this point in the history
  • Loading branch information
chanange committed Feb 14, 2023
1 parent fda45e5 commit 31de04e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/dagster.yml
Expand Up @@ -52,7 +52,7 @@ jobs:
with:
task: 'remove'
helm: helm3
repository: "https://dagster-io.github.io/helm"
repository: 'https://dagster-io.github.io/helm'
chart: 'dagster'
release: "${{ format('{0}-pr-{1}', inputs.image_name, github.event.number) }}"
namespace: 'dagster'
Expand All @@ -79,7 +79,7 @@ jobs:
ssh-add - <<< "${{ secrets.SSH_KEY }}"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v2

- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v0.2.1
Expand All @@ -97,7 +97,7 @@ jobs:
run: echo ::set-output name=IMAGE_FULLNAME::eu.gcr.io/${{ inputs.gcp_project }}/${{ inputs.image_name }}:${GITHUB_REF#refs/tags/}

- name: Build docker image
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
with:
Expand All @@ -120,7 +120,7 @@ jobs:
for i in $(seq 1 10); do /tmp/grpc_health_probe -addr=localhost:8080 && s=0 && break || s=$? && sleep 2; done; (docker logs test_container && exit $s)
- name: Push docker image
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
with:
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
uses: AndreaGiardini/helm@master # Should be replaced with deliverybot/helm@v1 when https://github.com/deliverybot/helm/issues/66 is fixed
with:
helm: helm3
repository: "https://dagster-io.github.io/helm"
repository: 'https://dagster-io.github.io/helm'
chart: 'dagster'
release: "${{ format('{0}-pr-{1}', inputs.image_name, github.event.number) }}"
namespace: 'dagster'
Expand Down

0 comments on commit 31de04e

Please sign in to comment.