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
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Dependency Review
uses: actions/dependency-review-action@v3
uses: actions/dependency-review-action@v4
with:
fail-on-severity: moderate
fail-on-scopes: runtime, development, unknown
2 changes: 1 addition & 1 deletion build/lambda-functions/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
-publishPathFilter "${{ inputs.publishPathFilter }}" `
-verbosity ${{ inputs.verbosity }}
- name: Upload artifact (compressed)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-lambda-functions-compressed
path: ./output-compressed
Expand Down
2 changes: 1 addition & 1 deletion build/netcore/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ runs:
using: composite
steps:
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ inputs.dotnetVersion }}
- name: Restore packages
Expand Down
2 changes: 1 addition & 1 deletion build/terraform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

| Input | Description | Required | Default value | Comment |
| ----- | ----------- | -------- | ------------- | ------- |
| `modulesPath` | The path to the Terraform modules to build | *false* | `.tf` |
| `modulesPath` | The path to the Terraform modules to build | *false* | `infra` |
| `modulesPathDepth` | The path to the projects to test - can be a .csproj or a .sln file | *false* | `1` |
| `workspaceName` | The name of the Terraform workspace where to plan changes | *false* | `""` | Requires valid credentials to access the state file |
| `verbosity` | The verbosity of the scripts | *false* | `minimal` | Set to `minimal`, `normal` or `detailed` |
Expand Down
2 changes: 1 addition & 1 deletion build/terraform/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ author: Antoine Milochau
inputs:
modulesPath:
description: The path to the Terraform modules to build
default: '.tf'
default: 'infra'
modulesPathDepth:
description: The depth of the path search, to find the Terraform modules to build
default: '1'
Expand Down
2 changes: 1 addition & 1 deletion deploy/terraform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

| Input | Description | Required | Default value | Comment |
| ----- | ----------- | -------- | ------------- | ------- |
| `modulePath` | The path to the Terraform module to deploy | *false* | `.tf` |
| `modulePath` | The path to the Terraform module to deploy | *false* | `infra` |
| `workspaceName` | The name of the Terraform workspace | *false* | `default` |
| `verbosity` | The verbosity of the scripts | *false* | `minimal` | Set to `minimal`, `normal` or `detailed` |

Expand Down
2 changes: 1 addition & 1 deletion deploy/terraform/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ author: Antoine Milochau
inputs:
modulePath:
description: The path to the Terraform module to deploy
default: '.tf'
default: 'infra'
workspaceName:
description: The name of the Terraform workspace
default: default
Expand Down
2 changes: 1 addition & 1 deletion release/nuget/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ runs:
using: composite
steps:
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ inputs.dotnetVersion }}
- name: Restore packages
Expand Down