From e466f1f54efea2f8e6e495fbafc96547d054fe22 Mon Sep 17 00:00:00 2001 From: Artem Yakimenko Date: Sat, 22 Apr 2023 15:14:02 +1000 Subject: [PATCH 1/2] Loosen checkout dep --- .github/workflows/integration-compute-core.yml | 2 +- .github/workflows/integration-compute-instance_groups.yml | 2 +- .github/workflows/integration-compute-loadbalancing.yml | 2 +- .github/workflows/integration-compute-networking.yml | 2 +- .github/workflows/integration-monitoring.yml | 2 +- .github/workflows/integration-pubsub.yml | 2 +- .github/workflows/integration-sql.yml | 2 +- .github/workflows/integration-storage.yml | 2 +- .github/workflows/unit.yml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/integration-compute-core.yml b/.github/workflows/integration-compute-core.yml index 496dc186b..a33950d36 100644 --- a/.github/workflows/integration-compute-core.yml +++ b/.github/workflows/integration-compute-core.yml @@ -33,7 +33,7 @@ jobs: max-parallel: 1 steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 env: diff --git a/.github/workflows/integration-compute-instance_groups.yml b/.github/workflows/integration-compute-instance_groups.yml index 01671673e..d98608fff 100644 --- a/.github/workflows/integration-compute-instance_groups.yml +++ b/.github/workflows/integration-compute-instance_groups.yml @@ -33,7 +33,7 @@ jobs: max-parallel: 1 steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 env: diff --git a/.github/workflows/integration-compute-loadbalancing.yml b/.github/workflows/integration-compute-loadbalancing.yml index ba2ea7f51..488b182e9 100644 --- a/.github/workflows/integration-compute-loadbalancing.yml +++ b/.github/workflows/integration-compute-loadbalancing.yml @@ -33,7 +33,7 @@ jobs: max-parallel: 1 steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 env: diff --git a/.github/workflows/integration-compute-networking.yml b/.github/workflows/integration-compute-networking.yml index 251633e08..54f632b7e 100644 --- a/.github/workflows/integration-compute-networking.yml +++ b/.github/workflows/integration-compute-networking.yml @@ -33,7 +33,7 @@ jobs: max-parallel: 1 steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 env: diff --git a/.github/workflows/integration-monitoring.yml b/.github/workflows/integration-monitoring.yml index 4ec743f6e..2de46890f 100644 --- a/.github/workflows/integration-monitoring.yml +++ b/.github/workflows/integration-monitoring.yml @@ -34,7 +34,7 @@ jobs: max-parallel: 1 steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 env: diff --git a/.github/workflows/integration-pubsub.yml b/.github/workflows/integration-pubsub.yml index 723d65549..9d6e53d32 100644 --- a/.github/workflows/integration-pubsub.yml +++ b/.github/workflows/integration-pubsub.yml @@ -34,7 +34,7 @@ jobs: max-parallel: 1 steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 env: diff --git a/.github/workflows/integration-sql.yml b/.github/workflows/integration-sql.yml index 202a8bea6..a30aeb13e 100644 --- a/.github/workflows/integration-sql.yml +++ b/.github/workflows/integration-sql.yml @@ -34,7 +34,7 @@ jobs: max-parallel: 1 steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 env: diff --git a/.github/workflows/integration-storage.yml b/.github/workflows/integration-storage.yml index 36989d5b6..30e3beac5 100644 --- a/.github/workflows/integration-storage.yml +++ b/.github/workflows/integration-storage.yml @@ -35,7 +35,7 @@ jobs: max-parallel: 1 steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 env: diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index 15bcaa2f4..3b0ede8ea 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -14,7 +14,7 @@ jobs: ruby-version: ['2.5', '2.6', '2.7', '3.0', '3.1', 'head', 'truffleruby-head'] steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: From 14487b404117b03f69606eeace69852701ce93ba Mon Sep 17 00:00:00 2001 From: Artem Yakimenko Date: Sat, 22 Apr 2023 15:14:25 +1000 Subject: [PATCH 2/2] Remove env set in an attempt to fix tests See #592 --- .github/workflows/integration-compute-core.yml | 5 ----- .github/workflows/integration-compute-instance_groups.yml | 5 ----- .github/workflows/integration-compute-loadbalancing.yml | 5 ----- .github/workflows/integration-compute-networking.yml | 5 ----- .github/workflows/integration-monitoring.yml | 5 ----- .github/workflows/integration-pubsub.yml | 5 ----- .github/workflows/integration-sql.yml | 5 ----- .github/workflows/integration-storage.yml | 5 ----- 8 files changed, 40 deletions(-) diff --git a/.github/workflows/integration-compute-core.yml b/.github/workflows/integration-compute-core.yml index a33950d36..bf2b2fd67 100644 --- a/.github/workflows/integration-compute-core.yml +++ b/.github/workflows/integration-compute-core.yml @@ -36,11 +36,6 @@ jobs: - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 - env: - # Needs to be set up for self-hosted runners, see: - # https://github.com/ruby/setup-ruby#using-self-hosted-runners - # Image used in runners: summerwind/actions-runner - ImageOS: ubuntu20 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically diff --git a/.github/workflows/integration-compute-instance_groups.yml b/.github/workflows/integration-compute-instance_groups.yml index d98608fff..6b5874523 100644 --- a/.github/workflows/integration-compute-instance_groups.yml +++ b/.github/workflows/integration-compute-instance_groups.yml @@ -36,11 +36,6 @@ jobs: - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 - env: - # Needs to be set up for self-hosted runners, see: - # https://github.com/ruby/setup-ruby#using-self-hosted-runners - # Image used in runners: summerwind/actions-runner - ImageOS: ubuntu20 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically diff --git a/.github/workflows/integration-compute-loadbalancing.yml b/.github/workflows/integration-compute-loadbalancing.yml index 488b182e9..46d7a802c 100644 --- a/.github/workflows/integration-compute-loadbalancing.yml +++ b/.github/workflows/integration-compute-loadbalancing.yml @@ -36,11 +36,6 @@ jobs: - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 - env: - # Needs to be set up for self-hosted runners, see: - # https://github.com/ruby/setup-ruby#using-self-hosted-runners - # Image used in runners: summerwind/actions-runner - ImageOS: ubuntu20 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically diff --git a/.github/workflows/integration-compute-networking.yml b/.github/workflows/integration-compute-networking.yml index 54f632b7e..9c96b085b 100644 --- a/.github/workflows/integration-compute-networking.yml +++ b/.github/workflows/integration-compute-networking.yml @@ -36,11 +36,6 @@ jobs: - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 - env: - # Needs to be set up for self-hosted runners, see: - # https://github.com/ruby/setup-ruby#using-self-hosted-runners - # Image used in runners: summerwind/actions-runner - ImageOS: ubuntu20 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically diff --git a/.github/workflows/integration-monitoring.yml b/.github/workflows/integration-monitoring.yml index 2de46890f..e57059f94 100644 --- a/.github/workflows/integration-monitoring.yml +++ b/.github/workflows/integration-monitoring.yml @@ -37,11 +37,6 @@ jobs: - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 - env: - # Needs to be set up for self-hosted runners, see: - # https://github.com/ruby/setup-ruby#using-self-hosted-runners - # Image used in runners: summerwind/actions-runner - ImageOS: ubuntu20 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically diff --git a/.github/workflows/integration-pubsub.yml b/.github/workflows/integration-pubsub.yml index 9d6e53d32..67a8382b9 100644 --- a/.github/workflows/integration-pubsub.yml +++ b/.github/workflows/integration-pubsub.yml @@ -37,11 +37,6 @@ jobs: - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 - env: - # Needs to be set up for self-hosted runners, see: - # https://github.com/ruby/setup-ruby#using-self-hosted-runners - # Image used in runners: summerwind/actions-runner - ImageOS: ubuntu20 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically diff --git a/.github/workflows/integration-sql.yml b/.github/workflows/integration-sql.yml index a30aeb13e..cb869647f 100644 --- a/.github/workflows/integration-sql.yml +++ b/.github/workflows/integration-sql.yml @@ -37,11 +37,6 @@ jobs: - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 - env: - # Needs to be set up for self-hosted runners, see: - # https://github.com/ruby/setup-ruby#using-self-hosted-runners - # Image used in runners: summerwind/actions-runner - ImageOS: ubuntu20 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically diff --git a/.github/workflows/integration-storage.yml b/.github/workflows/integration-storage.yml index 30e3beac5..65caa4175 100644 --- a/.github/workflows/integration-storage.yml +++ b/.github/workflows/integration-storage.yml @@ -38,11 +38,6 @@ jobs: - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 - env: - # Needs to be set up for self-hosted runners, see: - # https://github.com/ruby/setup-ruby#using-self-hosted-runners - # Image used in runners: summerwind/actions-runner - ImageOS: ubuntu20 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically