From 9cf0d95fbb375b68b523536140ab67a96ffb4ef0 Mon Sep 17 00:00:00 2001 From: Will McCutchen <will@mccutch.org> Date: Mon, 29 Nov 2021 18:05:43 -0500 Subject: [PATCH] Update test matrix and fix deploy action (#70) --- .github/workflows/continuous_delivery.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/continuous_delivery.yaml b/.github/workflows/continuous_delivery.yaml index 7fa315f..e554dce 100644 --- a/.github/workflows/continuous_delivery.yaml +++ b/.github/workflows/continuous_delivery.yaml @@ -21,7 +21,7 @@ jobs: - name: Setup uses: actions/setup-go@v2 with: - go-version: '1.16' + go-version: '1.17' - name: Checkout uses: actions/checkout@v2 @@ -46,9 +46,9 @@ jobs: strategy: matrix: go_version: - - '1.13' - '1.14' - '1.15' + - '1.16' steps: - name: Setup @@ -76,7 +76,7 @@ jobs: - name: Notify start id: deployment - uses: bobheadxi/deployments@v0.4.2 + uses: bobheadxi/deployments@v0.6.1 with: step: start token: ${{ secrets.GITHUB_TOKEN }} @@ -91,7 +91,7 @@ jobs: FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} - name: Notify finish - uses: bobheadxi/deployments@v0.4.2 + uses: bobheadxi/deployments@v0.6.1 with: step: finish deployment_id: ${{ steps.deployment.outputs.deployment_id }} -- GitLab