From 03149dd14972017152d494d93862cb7d348403e6 Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Fri, 8 Aug 2025 16:28:39 -0400 Subject: [PATCH] Try skipping in tests --- .github/workflows/integration.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 78e7faf6..ad5ea9f9 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -46,24 +46,28 @@ jobs: uses: './' with: skip_install: true + skip_tool_cache: true # Constraint installation - name: 'Install constraint' uses: './' with: version: '>= 1.0.0' + skip_tool_cache: true # Default installation - name: 'Install version' uses: './' with: version: '374.0.0' + skip_tool_cache: true # Latest installation - name: 'Install latest' uses: './' with: version: 'latest' + skip_tool_cache: true # By default, there is no configuration - name: 'Check defaults' @@ -77,6 +81,7 @@ jobs: uses: './' with: install_components: 'cloud-run-proxy' + skip_tool_cache: true - name: 'Check components' run: 'npm run integration' @@ -88,6 +93,7 @@ jobs: uses: './' with: project_id: '${{ vars.PROJECT_ID }}' + skip_tool_cache: true - name: 'Check project ID' run: 'npm run integration' @@ -103,6 +109,8 @@ jobs: - name: 'Setup gcloud with WIF' uses: './' + with: + skip_tool_cache: true - name: 'Check WIF authentication' run: 'npm run integration' @@ -118,6 +126,8 @@ jobs: - name: 'Setup gcloud with SAKE' uses: './' + with: + skip_tool_cache: true - name: 'Check SAKE authentication' run: 'npm run integration'