Skip to content

Commit

Permalink
fix: update some action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
GirZ0n committed Feb 21, 2024
1 parent d7eacba commit 172177f
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ jobs:
name: Setup files on ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v4.5.0
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}

- name: Cache Poetry
id: poetry-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/poetry
key: ${{ runner.os }}-poetry-cache-${{ env.POETRY_VERSION }}
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Cache virtual environment
id: pip-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./.venv
key: ${{ runner.os }}-pip-cache-${{ hashFiles('./poetry.lock') }}
Expand All @@ -58,23 +58,23 @@ jobs:
name: Check code style

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v4.5.0
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}

- name: Cache Poetry
id: poetry-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/poetry
key: ${{ runner.os }}-poetry-cache-${{ env.POETRY_VERSION }}

- name: Cache virtual environment
id: pip-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./.venv
key: ${{ runner.os }}-pip-cache-${{ hashFiles('./poetry.lock') }}
Expand All @@ -100,23 +100,23 @@ jobs:
name: Run tests on ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v4.5.0
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}

- name: Cache Poetry
id: poetry-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/poetry
key: ${{ runner.os }}-poetry-cache-${{ env.POETRY_VERSION }}

- name: Cache virtual environment
id: pip-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./.venv
key: ${{ runner.os }}-pip-cache-${{ hashFiles('./poetry.lock') }}
Expand Down Expand Up @@ -151,10 +151,10 @@ jobs:
name: Run Anderson via pip on ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v4.5.0
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}

Expand Down

0 comments on commit 172177f

Please sign in to comment.