Skip to content

Commit

Permalink
ci: upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
azzamsa committed Jul 30, 2024
1 parent 2321d98 commit 0f108c1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: taiki-e/install-action@just
- uses: taiki-e/install-action@dprint
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci_agent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.11.3'

- name: Cache poetry install
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.local
key: poetry
Expand All @@ -48,7 +48,7 @@ jobs:

- name: Cache deps
id: cache-deps
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.VENV_PATH }}
key: venv-agent-${{ hashFiles('**/poetry.lock') }}
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ci_api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.11.3'

- name: Cache poetry install
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.local
key: poetry
Expand All @@ -48,7 +48,7 @@ jobs:

- name: Cache deps
id: cache-deps
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.VENV_PATH }}
key: venv-api-${{ hashFiles('**/poetry.lock') }}
Expand Down Expand Up @@ -110,15 +110,15 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

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

- name: Cache poetry install
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.local
key: poetry
Expand All @@ -132,7 +132,7 @@ jobs:

- name: Cache deps
id: cache-deps
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.VENV_PATH }}
key: venv-api-${{ hashFiles('**/poetry.lock') }}
Expand Down

0 comments on commit 0f108c1

Please sign in to comment.