Skip to content

Commit

Permalink
docs: promote version pinning (#262)
Browse files Browse the repository at this point in the history
* docs: promote version pinning

Promote pinning to specific version, which is the recommended approach for builds used in production.

* docs: force string type
  • Loading branch information
hknutsen authored Oct 2, 2023
1 parent 6922efe commit 7274a13
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/usage-examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
environment: development
working_directory: terraform
terraform_version: ~1.0.0
terraform_version: "1.5.0"
secrets:
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
uses: equinor/ops-actions/.github/workflows/python.yml@main
with:
working_directory: src
python_version: "3.x"
python_version: "3.10"
pip_install_target: .python_packages/lib/site-packages # Required
deploy:
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
build:
uses: equinor/ops-actions/.github/workflows/dotnet.yml@main
with:
dotnet_version: "6.x"
dotnet_version: "6.0"
project: src/Example/Example.csproj
test_project: |-
tests/Example.UnitTests/Example.UnitTests.csproj
Expand Down Expand Up @@ -210,8 +210,8 @@ jobs:
deploy:
uses: equinor/ops-actions/.github/workflows/mkdocs-gh-pages.yml@main
with:
mkdocs_version: ">=1.0.0"
python_version: "3.x"
mkdocs_version: "1.0.0"
python_version: "3.10"
```

Prerequisites:
Expand Down

0 comments on commit 7274a13

Please sign in to comment.