diff --git a/.github/actions/lint-sql/action.yml b/.github/actions/lint-sql/action.yml index 5c7cdb3..60aeddc 100644 --- a/.github/actions/lint-sql/action.yml +++ b/.github/actions/lint-sql/action.yml @@ -27,12 +27,12 @@ runs: using: composite steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Setup Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ inputs.python-version }} diff --git a/.github/actions/lint-sql/project.json b/.github/actions/lint-sql/project.json index 1978144..91a92f0 100644 --- a/.github/actions/lint-sql/project.json +++ b/.github/actions/lint-sql/project.json @@ -1,4 +1,4 @@ { - "name": "lint-sql", - "version": "1.0.0" + "name": "lint-sql", + "version": "1.0.1" } \ No newline at end of file diff --git a/.github/actions/lint-terraform/action.yml b/.github/actions/lint-terraform/action.yml index 5fe2b89..4ca4296 100644 --- a/.github/actions/lint-terraform/action.yml +++ b/.github/actions/lint-terraform/action.yml @@ -11,12 +11,12 @@ runs: using: composite steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Setup terraform - uses: hashicorp/setup-terraform@v2 + uses: hashicorp/setup-terraform@v4 with: terraform_version: ${{ inputs.terraform-version }} diff --git a/.github/actions/lint-terraform/project.json b/.github/actions/lint-terraform/project.json index 55d600b..9d06d3c 100644 --- a/.github/actions/lint-terraform/project.json +++ b/.github/actions/lint-terraform/project.json @@ -1,4 +1,4 @@ { - "name": "lint-terraform", - "version": "1.0.0" + "name": "lint-terraform", + "version": "1.0.1" } \ No newline at end of file diff --git a/.github/actions/lint-test-yarn/action.yml b/.github/actions/lint-test-yarn/action.yml index ed1447c..862a30c 100644 --- a/.github/actions/lint-test-yarn/action.yml +++ b/.github/actions/lint-test-yarn/action.yml @@ -51,12 +51,12 @@ runs: - name: Checkout code if: inputs.checkout-code == 'yes' - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Setup Node JS - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: ${{ inputs.node-version }} cache: 'yarn' @@ -125,7 +125,7 @@ runs: - name: Upload the Coverage as an artifact if: inputs.should-run-tests == 'yes' && inputs.upload-coverage == 'yes' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ steps.coverage.outputs.coverage_branch }}-test-coverage path: ${{ steps.coverage.outputs.coverage_dir }} diff --git a/.github/actions/lint-test-yarn/project.json b/.github/actions/lint-test-yarn/project.json index 31ef0ee..b2cdd28 100644 --- a/.github/actions/lint-test-yarn/project.json +++ b/.github/actions/lint-test-yarn/project.json @@ -1,4 +1,4 @@ { - "name": "lint-test-yarn", - "version": "1.0.1" + "name": "lint-test-yarn", + "version": "1.0.2" } \ No newline at end of file diff --git a/.github/actions/test-python/action.yml b/.github/actions/test-python/action.yml index c3e2c4d..f6c5902 100644 --- a/.github/actions/test-python/action.yml +++ b/.github/actions/test-python/action.yml @@ -49,7 +49,7 @@ runs: - name: Set up Python if: inputs.should-run-tests == 'yes' # This is the version of the action for setting up Python, not the Python version. - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: # Semantic version range syntax or exact version of a Python version python-version: ${{ inputs.python-version }} @@ -62,7 +62,7 @@ runs: - name: Checkout code if: inputs.should-run-tests == 'yes' && inputs.checkout-code == 'yes' - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -141,7 +141,7 @@ runs: - name: Upload the Coverage as an artifact if: inputs.should-run-tests == 'yes' && inputs.upload-coverage == 'yes' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ steps.coverage.outputs.coverage_prefix }}${{ steps.coverage.outputs.coverage_branch }}-test-coverage path: ${{ steps.coverage.outputs.coverage_dir }} diff --git a/.github/actions/test-python/project.json b/.github/actions/test-python/project.json index 9120f77..427401b 100644 --- a/.github/actions/test-python/project.json +++ b/.github/actions/test-python/project.json @@ -1,4 +1,4 @@ { - "name": "test-python", - "version": "1.0.1" + "name": "test-python", + "version": "1.0.2" } \ No newline at end of file diff --git a/.github/actions/validate-terraform/action.yml b/.github/actions/validate-terraform/action.yml index cd325ac..a7fe31f 100644 --- a/.github/actions/validate-terraform/action.yml +++ b/.github/actions/validate-terraform/action.yml @@ -16,12 +16,12 @@ runs: using: composite steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Setup terraform - uses: hashicorp/setup-terraform@v2 + uses: hashicorp/setup-terraform@v4 with: terraform_version: ${{ inputs.terraform-version }} diff --git a/.github/actions/validate-terraform/project.json b/.github/actions/validate-terraform/project.json index c49a238..1b16835 100644 --- a/.github/actions/validate-terraform/project.json +++ b/.github/actions/validate-terraform/project.json @@ -1,4 +1,4 @@ { - "name": "validate-terraform", - "version": "1.0.0" + "name": "validate-terraform", + "version": "1.0.1" } \ No newline at end of file