Skip to content

Commit

Permalink
test: Allow storage.googleapis.com:433 from GitHub Actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
skyzyx committed Nov 14, 2023
1 parent a0cabe1 commit 78966d5
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: '>= 1.21'
go-version: ">= 1.21"
cache: true

- name: Run mutation tests
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: '>= 1.21'
go-version: ">= 1.21"
cache: true

- name: Run unit tests
Expand All @@ -80,12 +80,12 @@ jobs:
fail-fast: false
matrix:
terraform_version:
- '1.1'
- '1.2'
- '1.3'
- '1.4'
- '1.5'
- '1.6'
- "1.1"
- "1.2"
- "1.3"
- "1.4"
- "1.5"
- "1.6"

steps:
- name: Harden Runner
Expand All @@ -98,6 +98,7 @@ jobs:
github.com:443
proxy.golang.org:443
releases.hashicorp.com:443
storage.googleapis.com:443
- name: Checkout Source
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
Expand All @@ -107,7 +108,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: '>= 1.21'
go-version: ">= 1.21"
cache: true

- name: Install Terraform
Expand Down

0 comments on commit 78966d5

Please sign in to comment.