From 872a4f9624ad2d4885c03f1d6f7260eb5adbf64e Mon Sep 17 00:00:00 2001 From: Cristina Zbarcea Date: Thu, 22 Feb 2024 14:06:50 -0500 Subject: [PATCH 1/2] rename rtx to mise --- .github/workflows/document.yml | 4 ++-- .github/workflows/format.yml | 4 ++-- .github/workflows/lint.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- .github/workflows/validate.yml | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) 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 From d969ebe1d07719ccd3620df22081b017e99d0d02 Mon Sep 17 00:00:00 2001 From: crzbarcea Date: Thu, 22 Feb 2024 19:07:22 +0000 Subject: [PATCH 2/2] Running document script --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index dc68094..58bca37 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-namespace-module?ref=0.1.23 +github.com/pbs/terraform-aws-namespace-module?ref=x.y.z ``` ### Alternative Installation Methods @@ -44,7 +44,7 @@ Integrate this module like so: ```hcl module "namespace" { - source = "github.com/pbs/terraform-aws-namespace-module?ref=0.1.23" + source = "github.com/pbs/terraform-aws-namespace-module?ref=x.y.z" # Tagging Parameters organization = var.organization @@ -60,7 +60,7 @@ module "namespace" { ```hcl module "namespace" { - source = "github.com/pbs/terraform-aws-namespace-module?ref=0.1.23" + source = "github.com/pbs/terraform-aws-namespace-module?ref=x.y.z" type = "private" name = "example.private" @@ -79,7 +79,7 @@ module "namespace" { ```hcl module "namespace" { - source = "github.com/pbs/terraform-aws-namespace-module?ref=0.1.23" + source = "github.com/pbs/terraform-aws-namespace-module?ref=x.y.z" type = "public" name = "example.org" @@ -98,7 +98,7 @@ module "namespace" { If this repo is added as a subtree, then the version of the module should be close to the version shown here: -`0.1.23` +`x.y.z` Note, however that subtrees can be altered as desired within repositories.