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..5070195 100644 --- a/.github/workflows/ci-lint-codebase.yaml +++ b/.github/workflows/ci-lint-codebase.yaml @@ -29,14 +29,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code Repository - uses: actions/checkout@v4.1.7 + uses: actions/checkout@v4.2.0 with: # Full git history is needed to get a proper # list of changed files within `super-linter` 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..27e5097 100644 --- a/.github/workflows/sub-build-docker-image.yml +++ b/.github/workflows/sub-build-docker-image.yml @@ -36,7 +36,7 @@ jobs: contents: read id-token: write steps: - - uses: actions/checkout@v4.1.7 + - uses: actions/checkout@v4.2.0 with: persist-credentials: false @@ -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.9.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..3014308 100644 --- a/.github/workflows/sub-cloudrun-deploy.yml +++ b/.github/workflows/sub-cloudrun-deploy.yml @@ -77,23 +77,23 @@ jobs: - name: Inject slug/short variables uses: rlespinasse/github-slug-action@v4.5.0 - - uses: actions/checkout@v4.1.7 + - uses: actions/checkout@v4.2.0 with: persist-credentials: false - 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 }} diff --git a/.github/workflows/sub-unit-tests.yml b/.github/workflows/sub-unit-tests.yml index 5d0f1af..4b2f057 100644 --- a/.github/workflows/sub-unit-tests.yml +++ b/.github/workflows/sub-unit-tests.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code Repository - uses: actions/checkout@v4.1.7 + uses: actions/checkout@v4.2.0 - name: Setup Go uses: actions/setup-go@v5