1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Bumped versions in Github actions configuration to v3.

This commit is contained in:
Mariusz Felisiak
2022-03-07 10:56:31 +01:00
committed by GitHub
parent f3bf6c4218
commit 4468bcc657
3 changed files with 17 additions and 25 deletions

View File

@@ -20,9 +20,9 @@ jobs:
name: Windows, SQLite, Python ${{ matrix.python-version }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
@@ -36,17 +36,12 @@ jobs:
name: JavaScript tests
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '12'
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
restore-keys: |
${{ runner.os }}-node-
cache: 'npm'
cache-dependency-path: '**/package.json'
- run: npm install
- run: npm test