diff --git a/.github/workflows/chore-clean-dev.yml b/.github/workflows/chore-clean-dev.yml index 09ae4ed..c8d08ad 100644 --- a/.github/workflows/chore-clean-dev.yml +++ b/.github/workflows/chore-clean-dev.yml @@ -20,13 +20,13 @@ jobs: - name: Authenticate to Google Cloud id: auth - uses: google-github-actions/auth@v2.1.3 + uses: google-github-actions/auth@v2.1.5 with: workload_identity_provider: '${{ vars.GCP_WIF }}' project_id: '${{ vars.GCP_PROJECT }}' - name: Set up Cloud SDK - uses: google-github-actions/setup-gcloud@v2.1.0 + uses: google-github-actions/setup-gcloud@v2.1.1 - name: Removing CR service run: | diff --git a/.github/workflows/ci-lint-codebase.yaml b/.github/workflows/ci-lint-codebase.yaml index fd66405..320baee 100644 --- a/.github/workflows/ci-lint-codebase.yaml +++ b/.github/workflows/ci-lint-codebase.yaml @@ -36,7 +36,7 @@ jobs: fetch-depth: 0 - name: Lint Code Base - uses: super-linter/super-linter/slim@v6.7.0 + uses: super-linter/super-linter/slim@v7.1.0 env: LOG_LEVEL: ERROR VALIDATE_ALL_CODEBASE: false diff --git a/.github/workflows/sub-build-docker-image.yml b/.github/workflows/sub-build-docker-image.yml index 51c30f9..abd20c1 100644 --- a/.github/workflows/sub-build-docker-image.yml +++ b/.github/workflows/sub-build-docker-image.yml @@ -70,11 +70,11 @@ jobs: # Setup Docker Buildx to allow use of docker cache layers from GH - name: Set up Docker Buildx id: buildx - uses: docker/setup-buildx-action@v3.4.0 + uses: docker/setup-buildx-action@v3.6.1 - name: Authenticate to Google Cloud id: auth - uses: google-github-actions/auth@v2.1.3 + uses: google-github-actions/auth@v2.1.5 with: workload_identity_provider: '${{ vars.GCP_WIF }}' service_account: '${{ vars.GCP_ARTIFACTS_SA }}' @@ -85,7 +85,7 @@ jobs: access_token_lifetime: 10800s - name: Login to Google Artifact Registry - uses: docker/login-action@v3.2.0 + uses: docker/login-action@v3.3.0 with: registry: us-docker.pkg.dev username: oauth2accesstoken @@ -94,7 +94,7 @@ jobs: # Build and push image to Google Artifact Registry, and possibly DockerHub - name: Build & push id: docker_build - uses: docker/build-push-action@v6.3.0 + uses: docker/build-push-action@v6.7.0 with: target: ${{ inputs.dockerfile_target }} context: . diff --git a/.github/workflows/sub-cloudrun-deploy.yml b/.github/workflows/sub-cloudrun-deploy.yml index 60dba14..b8e501e 100644 --- a/.github/workflows/sub-cloudrun-deploy.yml +++ b/.github/workflows/sub-cloudrun-deploy.yml @@ -83,17 +83,17 @@ jobs: - name: Authenticate to Google Cloud id: auth - uses: google-github-actions/auth@v2.1.3 + uses: google-github-actions/auth@v2.1.5 with: workload_identity_provider: '${{ vars.GCP_WIF }}' project_id: '${{ vars.GCP_PROJECT }}' - name: Set up Cloud SDK - uses: google-github-actions/setup-gcloud@v2.1.0 + uses: google-github-actions/setup-gcloud@v2.1.1 - name: Deploy to cloud run id: deploy - uses: google-github-actions/deploy-cloudrun@v2.6.0 + uses: google-github-actions/deploy-cloudrun@v2.7.1 with: service: ${{ inputs.app_name }}-${{ needs.versioning.outputs.version || env.GITHUB_HEAD_REF_SLUG || inputs.environment }} image: ${{ inputs.registry }}/${{ inputs.app_name }}@${{ inputs.image_digest }}