diff --git a/.github/workflows/gh-page.yml b/.github/workflows/gh-page.yml index 8594a1ca..7843fd50 100644 --- a/.github/workflows/gh-page.yml +++ b/.github/workflows/gh-page.yml @@ -23,7 +23,7 @@ jobs: python-version: 3.6 - name: Pip cache - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.4.0 id: pip-cache with: path: ~/.cache/pip diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 45283125..0b5c62e3 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -18,7 +18,7 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@v3.3.1 + - uses: actions/cache@v3.4.0 id: pip-cache with: path: ~/.cache/pip diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d7c6a424..3a76e0e9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -63,7 +63,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Pip cache - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.4.0 id: pip-cache with: path: ~/.cache/pip diff --git a/django_model_subscription/urls.py b/django_model_subscription/urls.py index 8cfbc16d..46696ca9 100644 --- a/django_model_subscription/urls.py +++ b/django_model_subscription/urls.py @@ -14,6 +14,7 @@ 1. Import the include() function: from django.urls import include, path 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ + from django.contrib import admin from django.urls import path