diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index 2e9f1b7..aa4d0cd 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -13,9 +13,8 @@ jobs: name: Static Analysis steps: - name: Checkout - # for security reasons we pin commit ids and not tags. - # actions/checkout@v3.0.2 -> 2541b1294d2704b0964813337f33b291d3f8596b - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b + # actions/checkout@v4.1.1 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 with: fetch-depth: 0 @@ -64,9 +63,8 @@ jobs: name: Unit Tests steps: - name: Checkout - # for security reasons we pin commit ids and not tags. - # actions/checkout@v3.0.2 -> 2541b1294d2704b0964813337f33b291d3f8596b - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b + # actions/checkout@v4.1.1 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 with: fetch-depth: 0 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index da2c203..88688d4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,9 +15,8 @@ jobs: name: Static Analysis steps: - name: Checkout - # for security reasons we pin commit ids and not tags. - # actions/checkout@v3.0.2 -> 2541b1294d2704b0964813337f33b291d3f8596b - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b + # actions/checkout@v4.1.1 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 with: fetch-depth: 0 @@ -66,9 +65,8 @@ jobs: name: Unit Tests steps: - name: Checkout - # for security reasons we pin commit ids and not tags. - # actions/checkout@v3.0.2 -> 2541b1294d2704b0964813337f33b291d3f8596b - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b + # actions/checkout@v4.1.1 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 with: fetch-depth: 0 @@ -102,8 +100,8 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - # actions/checkout@v3.0.2 - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b + # actions/checkout@v4.1.1 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 with: fetch-depth: 0 diff --git a/iam.tf b/iam.tf index d485dbc..52dfd98 100644 --- a/iam.tf +++ b/iam.tf @@ -15,7 +15,7 @@ locals { } module "iam" { - source = "github.com/mineiros-io/terraform-google-storage-bucket-iam.git?ref=v0.1.1" + source = "github.com/mineiros-io/terraform-google-storage-bucket-iam.git?ref=v0.2.0" for_each = var.policy_bindings == null ? local.iam_map : {} @@ -34,7 +34,7 @@ module "iam" { } module "policy_bindings" { - source = "github.com/mineiros-io/terraform-google-storage-bucket-iam.git?ref=v0.1.1" + source = "github.com/mineiros-io/terraform-google-storage-bucket-iam.git?ref=v0.2.0" count = var.policy_bindings != null ? 1 : 0