Skip to content
Open
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 .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.8.2
3.9.5
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
The S3 cache action is an Azure Pipelines extension to be used with build pipelines in Azure DevOps to give us better control of our caching dependencies when deploying APIs. The task is not exclusive to dependencies and can cache a given file or folder.

## How to use
The s3-cache-action task is designed to add an easy way to provide caching of dependencies. To demonstrate, let's examine the following build definition snippet:
The s3-cache-action task is designed to add an easy way to provide caching of dependencies. To demonstrate, let's examine the following build definition snippet:
```yaml
- task: s3-cache-action@1
inputs:
Expand Down
8 changes: 4 additions & 4 deletions azure/azure-build-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ stages:
displayName: Print AWS info

- task: UsePythonVersion@0
displayName: "Use Python 3.8"
displayName: "Use Python 3.9"
inputs:
versionSpec: "3.8"
versionSpec: "3.9"

- task: NodeTool@0
displayName: "Use Node 13"
displayName: "Use Node 18"
inputs:
versionSpec: '13.x'
versionSpec: '18.x'

- bash: |
node --version
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Alex Carrie <[email protected]>"]
license = "MIT"

[tool.poetry.dependencies]
python = "^3.8"
python = ">=3.8,<4.0"
docker-compose-wait = "^1.2.2"

[tool.poetry.dev-dependencies]
Expand Down
Loading