From 25f6415c1f1164ee2500314c011dd6deb5943ef9 Mon Sep 17 00:00:00 2001 From: Elliott Shugerman Date: Sun, 12 Dec 2021 13:54:57 -0500 Subject: [PATCH] quote versions --- .github/workflows/build-and-push-images.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-and-push-images.yml b/.github/workflows/build-and-push-images.yml index c56de80..6991a14 100644 --- a/.github/workflows/build-and-push-images.yml +++ b/.github/workflows/build-and-push-images.yml @@ -9,11 +9,11 @@ jobs: strategy: matrix: include: - - { postgres: 10, alpine: 3.8 } - - { postgres: 11, alpine: 3.10 } - - { postgres: 12, alpine: 3.12 } - - { postgres: 13, alpine: 3.14 } - - { postgres: 14, alpine: 3.15 } + - { postgres: 10, alpine: '3.8' } + - { postgres: 11, alpine: '3.10' } + - { postgres: 12, alpine: '3.12' } + - { postgres: 13, alpine: '3.14' } + - { postgres: 14, alpine: '3.15' } steps: - name: Checkout repository uses: actions/checkout@v2