diff --git a/.github/workflows/deploy-develop.yml b/.github/workflows/deploy-develop.yml index 6744ef9..11ffab2 100644 --- a/.github/workflows/deploy-develop.yml +++ b/.github/workflows/deploy-develop.yml @@ -12,6 +12,10 @@ jobs: if: github.event.pull_request.merged == true runs-on: ubuntu-latest steps: + - name: Setup golang + uses: actions/setup-go@v3 + with: + go-version: 1.21.x - name: Login to Docker Hub uses: docker/login-action@v2 with: diff --git a/.github/workflows/deploy-master.yml b/.github/workflows/deploy-master.yml index 04a976c..933585f 100644 --- a/.github/workflows/deploy-master.yml +++ b/.github/workflows/deploy-master.yml @@ -12,6 +12,10 @@ jobs: if: github.event.pull_request.merged == true runs-on: ubuntu-latest steps: + - name: Setup golang + uses: actions/setup-go@v3 + with: + go-version: 1.21.x - name: Login to Docker Hub uses: docker/login-action@v2 with: