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
22 changes: 11 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98
with:
fetch-depth: 0
- name: Add Tool To Parse Dockerfiles
Expand All @@ -49,7 +49,7 @@ jobs:
- name: Compute Next Semver
id: next-semver
if: steps.get-latest-version.outputs.version != ''
uses: WyriHaximus/github-action-next-semvers@18aa9ed4152808ab99b88d71f5481e41f8d89930
uses: WyriHaximus/github-action-next-semvers@637b84e300ba3a3efb9794fc77d40708bab734aa
with:
version: ${{ steps.get-latest-version.outputs.version }}
- name: Compute Runtime Version
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
echo "title=$STRIPPED_TITLE" >> "$GITHUB_OUTPUT"
- name: Get Docker Metadata
id: meta
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051
uses: docker/metadata-action@85e876bd3a78bcc6b9925c818c482e365cf13b71
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@6862ffc5ab2cdb4405cf318a62a6f4c066e2298b
uses: docker/login-action@db14339dbc0a1f0b184157be94b23a2138122354
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker
uses: docker/setup-docker-action@e43656e248c0bd0647d3f5c195d116aacf6fcaf4
uses: docker/setup-docker-action@a9a8a9dfba19f6d3512ac34364db2d6b7371c7d7
with:
daemon-config: |
{
Expand All @@ -117,12 +117,12 @@ jobs:
}
}
- name: Set up QEMU
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130
uses: docker/setup-qemu-action@72cd56508471caa31aa98bca67440b2dc2f355c0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f
uses: docker/setup-buildx-action@8f54c6f8864eed1921d50086061f664945fcc305
- name: Build and Load Docker Image For Testing
id: build-for-testing
uses: docker/build-push-action@9e436ba9f2d7bcd1d038c8e55d039d37896ddc5d
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294
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@6862ffc5ab2cdb4405cf318a62a6f4c066e2298b
uses: docker/login-action@db14339dbc0a1f0b184157be94b23a2138122354
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@6862ffc5ab2cdb4405cf318a62a6f4c066e2298b
uses: docker/login-action@db14339dbc0a1f0b184157be94b23a2138122354
with:
username: "apollograph"
password: "${{ steps.gsm.outputs.token }}"
- name: Build and Push Docker image
id: push
uses: docker/build-push-action@9e436ba9f2d7bcd1d038c8e55d039d37896ddc5d
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
Expand Down
Loading