Skip to content

Commit c05d6ac

Browse files
committed
Merge remote-tracking branch 'origin' into dependabot/terraform/cloudposse/ecs-container-definition/aws-0.60.0
2 parents 8cf5676 + ed4513b commit c05d6ac

File tree

8 files changed

+49
-43
lines changed

8 files changed

+49
-43
lines changed

.github/workflows/add_issues.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
steps:
1313
- name: Generate token
1414
id: generate_token
15-
uses: tibdex/github-app-token@v1.7.0
15+
uses: tibdex/github-app-token@v1.8.0
1616
with:
1717
app_id: ${{ secrets.SYNOPS_APP_ID }}
1818
private_key: ${{ secrets.SYNOPS_APP_PRIVATE_KEY }}
1919

2020
- name: Add to project
2121
id: add_to_project
22-
uses: actions/add-to-project@v0.4.0
22+
uses: actions/add-to-project@v0.5.0
2323
with:
2424
project-url: https://github.com/orgs/synapsestudios/projects/33
2525
github-token: ${{ steps.generate_token.outputs.token }}

.github/workflows/cron.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Cron Jobs
2+
on:
3+
schedule:
4+
- cron: "0 0 * * 6"
5+
permissions:
6+
actions: read
7+
contents: read
8+
security-events: write
9+
jobs:
10+
tfscan:
11+
uses: synapsestudios/.github/.github/workflows/tf-scan.yml@master

.github/workflows/pr.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Pull Request Jobs
2+
on:
3+
pull_request:
4+
branches:
5+
- "*"
6+
- "*/*"
7+
- "**"
8+
permissions:
9+
actions: read
10+
contents: write
11+
pull-requests: write
12+
security-events: write
13+
jobs:
14+
terraform-format-test:
15+
uses: ./.github/workflows/terraform_format.yml
16+
terraform-docs:
17+
needs: [terraform-format-test]
18+
uses: ./.github/workflows/tf-docs.yml
19+
tfscan:
20+
needs: [terraform-format-test, terraform-docs]
21+
uses: synapsestudios/.github/.github/workflows/tf-scan.yml@master

.github/workflows/push.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Push Jobs
2+
on:
3+
push:
4+
branches: [main]
5+
permissions:
6+
actions: read
7+
contents: read
8+
security-events: write
9+
jobs:
10+
tfscan:
11+
uses: synapsestudios/.github/.github/workflows/tf-scan.yml@master

.github/workflows/terraform.yml

-16
This file was deleted.

.github/workflows/terraform_format.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ jobs:
99

1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v3
1313

1414
- name: test
1515
run: pwd
1616

1717
- name: Setup Terraform
18-
uses: hashicorp/setup-terraform@v1
18+
uses: hashicorp/setup-terraform@v2
1919
with:
2020
terraform_version: 1.3.7
2121

.github/workflows/documentation.yml renamed to .github/workflows/tf-docs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Generate terraform docs
1+
name: Generate Terraform Documentation
22
on:
33
workflow_call:
44

@@ -11,7 +11,7 @@ jobs:
1111
ref: ${{ github.event.pull_request.head.ref }}
1212

1313
- name: Render terraform docs inside the README.md and push changes back to PR branch
14-
uses: terraform-docs/gh-actions@v1.0.0
14+
uses: terraform-docs/gh-actions@main
1515
with:
1616
working-dir: .
1717
output-file: README.md

.github/workflows/tfsec_pr_commenter.yml

-21
This file was deleted.

0 commit comments

Comments
 (0)