Skip to content

Commit

Permalink
Merge pull request #72 from pbs/CAT-23697
Browse files Browse the repository at this point in the history
CAT-23697 Updated rtx-action to mise-action in GHA workflows
  • Loading branch information
ehirsch-3pg authored Mar 4, 2024
2 parents 18a7dca + 110e243 commit f9f5154
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/document.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Setup rtx
uses: jdx/rtx-action@v1
- name: Setup mise
uses: jdx/mise-action@v2

- name: "Generate documentation"
run: ./scripts/document.sh
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
- name: "Checkout"
uses: actions/checkout@main

- name: Setup rtx
uses: jdx/rtx-action@v1
- name: Setup mise
uses: jdx/mise-action@v2

- name: "Format"
run: ./scripts/format.sh
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
- name: "Checkout"
uses: actions/checkout@main

- name: Setup rtx
uses: jdx/rtx-action@v1
- name: Setup mise
uses: jdx/mise-action@v2

- name: "Lint"
run: ./scripts/lint.sh
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
- name: Checkout code
uses: actions/checkout@main

- name: Setup rtx
uses: jdx/rtx-action@v1
- name: Setup mise
uses: jdx/mise-action@v2

- name: "Run document script if necessary"
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
- name: "Checkout"
uses: actions/checkout@main

- name: Setup rtx
uses: jdx/rtx-action@v1
- name: Setup mise
uses: jdx/mise-action@v2

- name: "Validate Module"
run: ./scripts/validate.sh
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Use this URL for the source of the module. See the usage examples below for more details.

```hcl
github.com/pbs/terraform-aws-s3-module?ref=4.0.13
github.com/pbs/terraform-aws-s3-module?ref=x.y.z
```

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

```hcl
module "s3" {
source = "github.com/pbs/terraform-aws-s3-module?ref=4.0.13"
source = "github.com/pbs/terraform-aws-s3-module?ref=x.y.z"
# Tagging Parameters
organization = var.organization
Expand Down Expand Up @@ -63,7 +63,7 @@ module "s3" {

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

`4.0.13`
`x.y.z`

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

Expand Down

0 comments on commit f9f5154

Please sign in to comment.