diff --git a/.github/workflows/cd-manual.yml b/.github/workflows/cd-manual.yml index f62f3e45..1afc6e93 100644 --- a/.github/workflows/cd-manual.yml +++ b/.github/workflows/cd-manual.yml @@ -18,7 +18,7 @@ jobs: db-type: [postgresql, mysql] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: mr-smithers-excellent/docker-build-push@v6 name: Build & push Docker image for ${{ matrix.db-type }} diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 824001ef..6fda05a6 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -3,7 +3,6 @@ name: Create docker images on: [create] jobs: - build: name: Build, push, and deploy if: ${{ startsWith(github.ref, 'refs/tags/v') }} @@ -14,7 +13,7 @@ jobs: db-type: [postgresql, mysql] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set env run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV