Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
echo "title=$STRIPPED_TITLE" >> "$GITHUB_OUTPUT"
- name: Get Docker Metadata
id: meta
uses: docker/metadata-action@b13d25e5fcf2e04305d8aedc9a6c28ebe258e934
uses: docker/metadata-action@11079342065fb7d2c3b37cb799ab6ecc01ad1bb2
env:
DOCKER_METADATA_PR_HEAD_SHA: true
with:
Expand All @@ -102,13 +102,13 @@ jobs:
org.opencontainers.image.description=${{ steps.remove-quotes.outputs.description }}
org.opencontainers.image.title=${{ steps.remove-quotes.outputs.title }}
- name: Log in to the Container Registry
uses: docker/login-action@9fe7774c8f8ebfade96f0a62aa10f3882309d517
uses: docker/login-action@da5b89b92c1be57a07eeed1334a0728b94145654
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker
uses: docker/setup-docker-action@d9a54c7876e8942f9e63816d1e23168466c7adfa
uses: docker/setup-docker-action@d25408f91355f4404d6200cc35143e527fdd5401
with:
daemon-config: |
{
Expand All @@ -117,12 +117,12 @@ jobs:
}
}
- name: Set up QEMU
uses: docker/setup-qemu-action@a4bc6cde7eccda2bdcfac02ca3348c91290880bd
uses: docker/setup-qemu-action@6632d370eaa94c36e362c994b934b79877123e91
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@c8ad1c5d0f6f39c2bc446b807fa8ea2afadcddb6
uses: docker/setup-buildx-action@d91f340399fb2345e3e45f5461e116862b08261d
- name: Build and Load Docker Image For Testing
id: build-for-testing
uses: docker/build-push-action@dbac3ca1e5410ec04d2cce48cfbcfa3175fb8f4f
uses: docker/build-push-action@de308676347136a77704e0f257298c8f1b30054f
with:
load: true
tags: ${{ env.NAMESPACED_REGISTRY }}:test
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
--timeout "0h9m0s" \
--sensitive-data
- name: Log in to the GitHub Container Registry
uses: docker/login-action@9fe7774c8f8ebfade96f0a62aa10f3882309d517
uses: docker/login-action@da5b89b92c1be57a07eeed1334a0728b94145654
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand All @@ -179,13 +179,13 @@ jobs:
secrets: |-
token:platform-prod-service-q8dyj/docker_hub_push_token
- name: Docker Auth
uses: docker/login-action@9fe7774c8f8ebfade96f0a62aa10f3882309d517
uses: docker/login-action@da5b89b92c1be57a07eeed1334a0728b94145654
with:
username: "apollograph"
password: "${{ steps.gsm.outputs.token }}"
- name: Build and Push Docker image
id: push
uses: docker/build-push-action@dbac3ca1e5410ec04d2cce48cfbcfa3175fb8f4f
uses: docker/build-push-action@de308676347136a77704e0f257298c8f1b30054f
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
Expand Down
Loading