From 7f1a44262d9244427751dd3438adb700210aded4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 Feb 2024 17:30:23 +0000 Subject: [PATCH] chore(deps): bump the gh-deps group with 6 updates (#1714) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Felix Angelov --- .../workflows/deploy_artifact_proxy_dev.yaml | 15 ++++++++++----- .../workflows/deploy_artifact_proxy_prod.yaml | 17 +++++++++++------ .../workflows/deploy_discord_gcp_alerts.yaml | 17 +++++++++++------ .github/workflows/e2e.yaml | 10 +++++----- .github/workflows/main.yaml | 14 +++++++------- 5 files changed, 44 insertions(+), 29 deletions(-) diff --git a/.github/workflows/deploy_artifact_proxy_dev.yaml b/.github/workflows/deploy_artifact_proxy_dev.yaml index 2f3bef60..67af826e 100644 --- a/.github/workflows/deploy_artifact_proxy_dev.yaml +++ b/.github/workflows/deploy_artifact_proxy_dev.yaml @@ -26,18 +26,23 @@ jobs: steps: - name: 📚 Git Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: recursive - uses: dart-lang/setup-dart@v1 - - name: Setup Cloud SDK - uses: google-github-actions/setup-gcloud@v0.2.0 + - name: GCloud Auth + uses: "google-github-actions/auth@v2" with: project_id: ${{ env.PROJECT_ID }} service_account_key: ${{ secrets.CLOUD_RUN_SA_DEV }} - export_default_credentials: true + export_environment_variables: true + + - name: Setup Cloud SDK + uses: google-github-actions/setup-gcloud@v2.1.0 + with: + project_id: ${{ env.PROJECT_ID }} - name: Authorize Docker Push run: gcloud auth configure-docker @@ -49,7 +54,7 @@ jobs: - name: Deploy to Cloud Run id: deploy - uses: google-github-actions/deploy-cloudrun@v0.4.0 + uses: google-github-actions/deploy-cloudrun@v2.2.0 with: service: ${{ env.SERVICE }} image: gcr.io/${{ env.PROJECT_ID }}/${{ env.SERVICE }}:${{ github.sha }} diff --git a/.github/workflows/deploy_artifact_proxy_prod.yaml b/.github/workflows/deploy_artifact_proxy_prod.yaml index bd3a4efa..56f58f71 100644 --- a/.github/workflows/deploy_artifact_proxy_prod.yaml +++ b/.github/workflows/deploy_artifact_proxy_prod.yaml @@ -20,18 +20,23 @@ jobs: steps: - name: 📚 Git Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: recursive - uses: dart-lang/setup-dart@v1 - - name: Setup Cloud SDK - uses: google-github-actions/setup-gcloud@v0.2.0 + - name: GCloud Auth + uses: "google-github-actions/auth@v2" + with: + project_id: ${{ env.PROJECT_ID }} + credentials_json: ${{ secrets.CLOUD_RUN_SA_PROD }} + export_environment_variables: true + + - name: Setup Cloud SDK + uses: google-github-actions/setup-gcloud@v2.1.0 with: project_id: ${{ env.PROJECT_ID }} - service_account_key: ${{ secrets.CLOUD_RUN_SA_PROD }} - export_default_credentials: true - name: Authorize Docker Push run: gcloud auth configure-docker @@ -43,7 +48,7 @@ jobs: - name: Deploy to Cloud Run id: deploy - uses: google-github-actions/deploy-cloudrun@v0.4.0 + uses: google-github-actions/deploy-cloudrun@v2.2.0 with: service: ${{ env.SERVICE }} image: gcr.io/${{ env.PROJECT_ID }}/${{ env.SERVICE }}:${{ github.sha }} diff --git a/.github/workflows/deploy_discord_gcp_alerts.yaml b/.github/workflows/deploy_discord_gcp_alerts.yaml index 79ed6b74..190ffd28 100644 --- a/.github/workflows/deploy_discord_gcp_alerts.yaml +++ b/.github/workflows/deploy_discord_gcp_alerts.yaml @@ -26,18 +26,23 @@ jobs: steps: - name: 📚 Git Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: recursive - uses: dart-lang/setup-dart@v1 - - name: Setup Cloud SDK - uses: google-github-actions/setup-gcloud@v0.2.0 + - name: GCloud Auth + uses: "google-github-actions/auth@v2" + with: + project_id: ${{ env.PROJECT_ID }} + credentials_json: ${{ secrets.CLOUD_RUN_SA_PROD }} + export_environment_variables: true + + - name: Setup Cloud SDK + uses: google-github-actions/setup-gcloud@v2.1.0 with: project_id: ${{ env.PROJECT_ID }} - service_account_key: ${{ secrets.CLOUD_RUN_SA_PROD }} - export_default_credentials: true - name: Authorize Docker Push run: gcloud auth configure-docker @@ -49,7 +54,7 @@ jobs: - name: Deploy to Cloud Run id: deploy - uses: google-github-actions/deploy-cloudrun@v0.4.0 + uses: google-github-actions/deploy-cloudrun@v2.2.0 with: service: ${{ env.SERVICE }} image: gcr.io/${{ env.PROJECT_ID }}/${{ env.SERVICE }}:${{ github.sha }} diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index fdf07f1f..04e6f65c 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -23,7 +23,7 @@ jobs: steps: - name: 📚 Git Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: 🖥️ Add Shorebird to PATH shell: bash @@ -40,7 +40,7 @@ jobs: shell: bash - name: ☕ Set up Java - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: "temurin" java-version: "17" @@ -53,7 +53,7 @@ jobs: cache: true - name: 🤖 AVD Cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: avd-cache with: path: | @@ -91,7 +91,7 @@ jobs: steps: - name: 📚 Git Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} @@ -129,7 +129,7 @@ jobs: shell: pwsh - name: ☕ Set up Java - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: "temurin" java-version: "17" diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 16de7866..64c54078 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -27,9 +27,9 @@ jobs: steps: - name: 📚 Git Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - - uses: dorny/paths-filter@v2 + - uses: dorny/paths-filter@v3 name: Build Detection id: needs_dart_build with: @@ -73,7 +73,7 @@ jobs: - ./.github/actions/dart_package/action.yaml - packages/scoped/** - - uses: dorny/paths-filter@v2 + - uses: dorny/paths-filter@v3 name: Redis Detection id: needs_redis_build with: @@ -84,7 +84,7 @@ jobs: - ./.github/actions/dart_package/action.yaml - packages/redis_client/** - - uses: dorny/paths-filter@v2 + - uses: dorny/paths-filter@v3 name: Verify Detection id: needs_verify with: @@ -114,7 +114,7 @@ jobs: steps: - name: 📚 Git Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: 🎯 Build ${{ matrix.package }} uses: ./.github/actions/dart_package @@ -139,7 +139,7 @@ jobs: steps: - name: 📚 Git Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: 🐳 Run Redis run: | @@ -166,7 +166,7 @@ jobs: steps: - name: 📚 Git Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: 🔎 Verify ${{ matrix.package }} uses: ./.github/actions/verify_version