Skip to content

Commit

Permalink
chore(test.yml): update GitHub Actions workflow to use latest version…
Browse files Browse the repository at this point in the history
…s of actions and tools

- Update `actions/checkout` action from version 2 to version 4 for improved functionality and compatibility.
- Update `actions/setup-python` action from version 1 to version 5 to use the latest Python versions.
- Update `Gr1N/setup-poetry` action to use Poetry version 1.8.3 for the latest features and bug fixes.
- Disable the creation of virtual environments in the Poetry configuration.
  • Loading branch information
marcuxyz committed Jul 21, 2024
1 parent 5975976 commit 72770d9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ jobs:
python-version:
- '3.10'
- '3.11'
- '3.12'
- '3.12.4'

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install Poetry
uses: Gr1N/setup-poetry@v8
with:
poetry-version: 1.4.2
poetry-version: 1.8.3

- name: Disables creation of virtualenvs
run: poetry config virtualenvs.create false
Expand Down

0 comments on commit 72770d9

Please sign in to comment.