Skip to content

Commit

Permalink
Upload all GitHub Actions actions
Browse files Browse the repository at this point in the history
  • Loading branch information
philgyford committed Apr 8, 2024
1 parent b6bf3f0 commit 2a07335
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:

steps:
- name: Git clone
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 }}

Expand All @@ -41,7 +41,7 @@ jobs:
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT

- name: Pip cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ matrix.python-version }}-v2-${{ hashFiles('**/pyproject.toml') }}-${{ hashFiles('**/tox.ini') }}
Expand All @@ -59,7 +59,7 @@ jobs:
DJANGO: ${{ matrix.django-version }}

- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4

ruff:
name: "Run ruff: ${{ matrix.toxenv }}"
Expand All @@ -72,10 +72,10 @@ jobs:

steps:
- name: Git clone
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"

Expand All @@ -84,7 +84,7 @@ jobs:
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT

- name: Pip cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ matrix.python-version }}-v2-${{ hashFiles('**/pyproject.toml') }}-${{ hashFiles('**/tox.ini') }}
Expand All @@ -110,7 +110,7 @@ jobs:
if: always() # Pick up events even if the job fails or is cancelled.

steps:
- uses: technote-space/workflow-conclusion-action@v1
- uses: technote-space/workflow-conclusion-action@v3

- name: Send Slack notification
uses: 8398a7/action-slack@v3
Expand Down

0 comments on commit 2a07335

Please sign in to comment.