Skip to content

Commit 3bdc00c

Browse files
authored
Merge pull request #46 from pbs/CAT-23697
CAT-23697 Updated rtx-action to mise-action in GHA workflows
2 parents 843735b + 33eb70e commit 3bdc00c

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.github/workflows/document.yml

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
### Using the Repo Source
66

77
```hcl
8-
github.com/pbs/terraform-aws-ecr-module?ref=0.3.25
8+
github.com/pbs/terraform-aws-ecr-module?ref=x.y.z
99
```
1010

1111
### Alternative Installation Methods
@@ -22,7 +22,7 @@ Integrate this module like so:
2222

2323
```hcl
2424
module "ecr" {
25-
source = "github.com/pbs/terraform-aws-ecr-module?ref=0.3.25"
25+
source = "github.com/pbs/terraform-aws-ecr-module?ref=x.y.z"
2626
2727
# Tagging Parameters
2828
organization = var.organization
@@ -38,7 +38,7 @@ module "ecr" {
3838

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

41-
`0.3.25`
41+
`x.y.z`
4242

4343
Note, however that subtrees can be altered as desired within repositories.
4444

0 commit comments

Comments
 (0)