Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/lint-sql/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down
4 changes: 2 additions & 2 deletions .github/actions/lint-sql/project.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "lint-sql",
"version": "1.0.0"
"name": "lint-sql",
"version": "1.0.1"
}
4 changes: 2 additions & 2 deletions .github/actions/lint-terraform/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down
4 changes: 2 additions & 2 deletions .github/actions/lint-terraform/project.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "lint-terraform",
"version": "1.0.0"
"name": "lint-terraform",
"version": "1.0.1"
}
6 changes: 3 additions & 3 deletions .github/actions/lint-test-yarn/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/lint-test-yarn/project.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "lint-test-yarn",
"version": "1.0.1"
"name": "lint-test-yarn",
"version": "1.0.2"
}
6 changes: 3 additions & 3 deletions .github/actions/test-python/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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

Expand Down Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/test-python/project.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "test-python",
"version": "1.0.1"
"name": "test-python",
"version": "1.0.2"
}
4 changes: 2 additions & 2 deletions .github/actions/validate-terraform/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down
4 changes: 2 additions & 2 deletions .github/actions/validate-terraform/project.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "validate-terraform",
"version": "1.0.0"
"name": "validate-terraform",
"version": "1.0.1"
}