Skip to content

Commit d76bb60

Browse files
authored
Merge pull request #50 from pbs/CAT-23697
rename rtx to mise
2 parents 1d06204 + 83a8375 commit d76bb60

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.github/workflows/document.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
env:
2929
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3030

31-
- name: Setup rtx
32-
uses: jdx/rtx-action@v1
31+
- name: Setup mise
32+
uses: jdx/mise-action@v2
3333

3434
- name: "Generate documentation"
3535
run: ./scripts/document.sh

.github/workflows/format.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
- name: "Checkout"
2222
uses: actions/checkout@main
2323

24-
- name: Setup rtx
25-
uses: jdx/rtx-action@v1
24+
- name: Setup mise
25+
uses: jdx/mise-action@v2
2626

2727
- name: "Format"
2828
run: ./scripts/format.sh

.github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
- name: "Checkout"
1919
uses: actions/checkout@main
2020

21-
- name: Setup rtx
22-
uses: jdx/rtx-action@v1
21+
- name: Setup mise
22+
uses: jdx/mise-action@v2
2323

2424
- name: "Lint"
2525
run: ./scripts/lint.sh

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
- name: Checkout code
1111
uses: actions/checkout@main
1212

13-
- name: Setup rtx
14-
uses: jdx/rtx-action@v1
13+
- name: Setup mise
14+
uses: jdx/mise-action@v2
1515

1616
- name: "Run document script if necessary"
1717
run: |

.github/workflows/validate.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
- name: "Checkout"
2222
uses: actions/checkout@main
2323

24-
- name: Setup rtx
25-
uses: jdx/rtx-action@v1
24+
- name: Setup mise
25+
uses: jdx/mise-action@v2
2626

2727
- name: "Validate Module"
2828
run: ./scripts/validate.sh

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Use this URL for the source of the module. See the usage examples below for more details.
88

99
```hcl
10-
github.com/pbs/terraform-aws-rds-module?ref=0.3.26
10+
github.com/pbs/terraform-aws-rds-module?ref=x.y.z
1111
```
1212

1313
### Alternative Installation Methods
@@ -28,7 +28,7 @@ Integrate this module like so:
2828

2929
```hcl
3030
module "rds" {
31-
source = "github.com/pbs/terraform-aws-rds-module?ref=0.3.26"
31+
source = "github.com/pbs/terraform-aws-rds-module?ref=x.y.z"
3232
3333
# Required Parameters
3434
private_hosted_zone = "example.local"
@@ -47,7 +47,7 @@ module "rds" {
4747

4848
If this repo is added as a subtree, then the version of the module should be close to the version shown here:
4949

50-
`0.3.26`
50+
`x.y.z`
5151

5252
Note, however that subtrees can be altered as desired within repositories.
5353

0 commit comments

Comments
 (0)