Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix and Update Action Versions #7

Merged
merged 2 commits into from
Sep 11, 2023
Merged
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
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,16 @@ on:
push:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.0.0

- name: Setup Poetry
uses: threeal/setup-poetry-action@main
uses: threeal/setup-poetry-action@v1.0.0

- name: Install Dependencies
- name: Install dependencies
run: poetry install

# Add more steps as needed for your workflow
Expand All @@ -57,7 +58,7 @@ You can specify the Poetry version to be used by providing it as an input parame

```yaml
- name: Setup Poetry
uses: threeal/setup-poetry-action@main
uses: threeal/setup-poetry-action@v1.0.0
with:
version: 1.5.1
```
Expand All @@ -68,12 +69,12 @@ To set both the Python and Poetry versions, you can combine the Setup Poetry Act

```yaml
- name: Setup Python
uses: actions/setup-python@4.7.0
uses: actions/setup-python@v4.7.0
with:
python-version: 3.11

- name: Setup Poetry
uses: threeal/setup-poetry-action@main
uses: threeal/setup-poetry-action@v1.0.0
with:
version: 1.5.1
```
Expand All @@ -84,7 +85,7 @@ By default, caching is enabled. To disable caching, set the `cache` input parame

```yaml
- name: Setup Poetry without caching
uses: threeal/setup-poetry-action@main
uses: threeal/setup-poetry-action@v1.0.0
with:
cache: false
```
Expand Down