Skip to content

Commit

Permalink
Update GitHub Actions to latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
justinmayer committed May 14, 2024
1 parent 7eac929 commit e4ffd68
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
django-version: "5.0"

steps:
- 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: Set up Pip cache
uses: actions/cache@v3
uses: actions/cache@v4
id: pip-cache
with:
path: ~/.cache/pip
Expand All @@ -42,7 +42,7 @@ jobs:
- name: Install Poetry
run: python -m pip install poetry
- name: Set up Poetry cache
uses: actions/cache@v3
uses: actions/cache@v4
id: poetry-cache
with:
path: ~/.cache/pypoetry/virtualenvs
Expand All @@ -68,13 +68,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- 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.10"
- name: Set Poetry cache
uses: actions/cache@v3
uses: actions/cache@v4
id: poetry-cache
with:
path: ~/.cache/pypoetry/virtualenvs
Expand Down Expand Up @@ -103,13 +103,13 @@ jobs:
id-token: write

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.GH_TOKEN }}
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: "3.10"
- name: Check release
id: check_release
run: |
Expand Down

0 comments on commit e4ffd68

Please sign in to comment.