diff --git a/.github/workflows/document.yml b/.github/workflows/document.yml index b19eb73..a077c46 100644 --- a/.github/workflows/document.yml +++ b/.github/workflows/document.yml @@ -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 diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index c0ff13c..1c4b3ae 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -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 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 31981b3..4d5f72c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e35a8d6..2d6a253 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: | diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 91195a1..e676e76 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -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 diff --git a/README.md b/README.md index 01c8fe7..393dca3 100644 --- a/README.md +++ b/README.md @@ -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-rds-module?ref=0.3.26 +github.com/pbs/terraform-aws-rds-module?ref=x.y.z ``` ### Alternative Installation Methods @@ -28,7 +28,7 @@ Integrate this module like so: ```hcl module "rds" { - source = "github.com/pbs/terraform-aws-rds-module?ref=0.3.26" + source = "github.com/pbs/terraform-aws-rds-module?ref=x.y.z" # Required Parameters private_hosted_zone = "example.local" @@ -47,7 +47,7 @@ module "rds" { If this repo is added as a subtree, then the version of the module should be close to the version shown here: -`0.3.26` +`x.y.z` Note, however that subtrees can be altered as desired within repositories.