diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml index ec59f97e..6a1d2b09 100644 --- a/.github/workflows/build-docker-image.yml +++ b/.github/workflows/build-docker-image.yml @@ -118,10 +118,10 @@ jobs: CHECKPOINT_SYNC=${{ inputs.checkpoint_sync }} RUST_LOG=${{ inputs.rust_log }} push: true - # To improve build speeds, for eacrh branch we push an additonal image to the registry, + # To improve build speeds, for each branch we push an additional image to the registry, # to be used as the caching layer, using the `max` caching mode. # - # We use multiple cache sources to confirm a cache hit, starting from the `main` branch cahe, + # We use multiple cache sources to confirm a cache hit, starting from the `main` branch cache, # and if there's no hit, then continue with a cache scoped per branch. cache-from: | type=registry,ref=us-docker.pkg.dev/zealous-zebra/zebra/${{ inputs.image_name }}:main-cache diff --git a/.github/workflows/deploy-gcp-tests.yml b/.github/workflows/deploy-gcp-tests.yml index a3466ab9..35430b68 100644 --- a/.github/workflows/deploy-gcp-tests.yml +++ b/.github/workflows/deploy-gcp-tests.yml @@ -167,7 +167,7 @@ jobs: --description="Created from commit ${{ env.GITHUB_SHA_SHORT }} with height ${{ env.SYNC_HEIGHT }}" - name: Delete test instance - # If the disk generation step timeouts (+6 hours) the previous step (creating the image) willl be skipped. + # If the disk generation step timeouts (+6 hours) the previous step (creating the image) will be skipped. # Even if the instance continues running, no image will be created, so it's better to delete it. if: always() continue-on-error: true diff --git a/docker/Dockerfile b/docker/Dockerfile index 842f20c7..a564599e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -40,7 +40,7 @@ RUN apt-get -qq update && \ # Install google OS Config agent to be able to get information from the VMs being deployed # into GCP for integration testing purposes, and as Mainnet nodes -# TODO: this shouldn't be a harcoded requirement for everyone +# TODO: this shouldn't be a hardcoded requirement for everyone RUN if [ "$(uname -m)" != "aarch64" ]; then \ apt-get -qq update && \ apt-get -qq install -y --no-install-recommends \