Skip to content

Commit f455e10

Browse files
authored
docs: release v13 (#371)
Signed-off-by: Rishav Dhar <[email protected]>
1 parent 0e83677 commit f455e10

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

.github/examples/pr_merge_matrix.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
uses: opentofu/setup-opentofu@v1
3131

3232
- name: Provision TF
33-
uses: op5dev/tf-via-pr@v12
33+
uses: op5dev/tf-via-pr@v13
3434
with:
3535
command: ${{ github.event_name == 'merge_group' && 'apply' || 'plan' }}
3636
arg-lock: ${{ github.event_name == 'merge_group' }}

.github/examples/pr_push_auth.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
uses: hashicorp/setup-terraform@v3
4343

4444
- name: Provision TF
45-
uses: op5dev/tf-via-pr@v12
45+
uses: op5dev/tf-via-pr@v13
4646
with:
4747
command: ${{ github.event_name == 'push' && 'apply' || 'plan' }}
4848
arg-lock: ${{ github.event_name == 'push' }}

.github/examples/pr_push_lint.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Init TF
2727
id: tf
2828
if: ${{ github.event_name == 'pull_request' }}
29-
uses: op5dev/tf-via-pr@v12
29+
uses: op5dev/tf-via-pr@v13
3030
with:
3131
command: init
3232
arg-lock: false
@@ -76,7 +76,7 @@ jobs:
7676
exit 1
7777
7878
- name: Provision TF
79-
uses: op5dev/tf-via-pr@v12
79+
uses: op5dev/tf-via-pr@v13
8080
with:
8181
command: ${{ github.event_name == 'push' && 'apply' || 'plan' }}
8282
arg-lock: ${{ github.event_name == 'push' }}

.github/examples/pr_push_stages.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: hashicorp/setup-terraform@v3
2626

2727
- name: Plan TF
28-
uses: op5dev/tf-via-pr@v12
28+
uses: op5dev/tf-via-pr@v13
2929
with:
3030
command: plan
3131
working-directory: path/to/directory
@@ -44,7 +44,7 @@ jobs:
4444

4545
- name: Init TF
4646
id: tf
47-
uses: op5dev/tf-via-pr@v12
47+
uses: op5dev/tf-via-pr@v13
4848
with:
4949
command: init
5050
working-directory: path/to/directory
@@ -90,7 +90,7 @@ jobs:
9090
uses: hashicorp/setup-terraform@v3
9191

9292
- name: Apply TF
93-
uses: op5dev/tf-via-pr@v12
93+
uses: op5dev/tf-via-pr@v13
9494
with:
9595
command: apply
9696
working-directory: path/to/directory

.github/examples/pr_self_hosted.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
uses: opentofu/setup-opentofu@v1
3232

3333
- name: Provision TF
34-
uses: op5dev/tf-via-pr@v12
34+
uses: op5dev/tf-via-pr@v13
3535
with:
3636
command: ${{ github.event.pull_request.merged && 'apply' || 'plan' }}
3737
arg-lock: ${{ github.event.pull_request.merged }}

.github/examples/schedule_refresh.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- name: Plan TF
2727
id: provision
28-
uses: op5dev/tf-via-pr@v12
28+
uses: op5dev/tf-via-pr@v13
2929
with:
3030
command: plan
3131
arg-lock: false

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
steps:
6363
- uses: actions/checkout@4
6464
- uses: hashicorp/setup-terraform@v3
65-
- uses: op5dev/tf-via-pr@v12
65+
- uses: op5dev/tf-via-pr@v13
6666
with:
6767
# Run plan by default, or apply with lock on merge.
6868
command: ${{ github.event_name == 'push' && 'apply' || 'plan' }}

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Integrating security in your CI/CD pipeline is critical to practicing DevSecOps.
1010

1111
| Version | Supported |
1212
| :-----: | :-------: |
13-
| v12.X | Yes |
14-
|v11.X | No |
13+
| v13.X | Yes |
14+
|v12.X | No |
1515

1616
## Reporting a Vulnerability
1717

0 commit comments

Comments
 (0)