mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-20 03:41:05 -05:00
CI: update action dependencies
Fixes Node 12 deprecation warnings. - actions/checkout@v2 --> v3 - actions/setup-python@v2 --> v4 - fkirc/skip-duplicate-actions@v3.4.1 --> v5.3.0 [pinned to hash] Also set continue-on-error true in skip_duplicate_runs job, per recommendation in skip-duplicate-actions release notes.
This commit is contained in:
8
.github/workflows/test.yml
vendored
8
.github/workflows/test.yml
vendored
@@ -19,7 +19,7 @@ jobs:
|
||||
envlist: ${{ steps.generate-envlist.outputs.envlist }}
|
||||
steps:
|
||||
- name: Get code
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
- name: Install tox-gh-matrix
|
||||
run: |
|
||||
python -m pip install 'tox<4' 'tox-gh-matrix<0.2'
|
||||
@@ -47,16 +47,16 @@ jobs:
|
||||
timeout-minutes: 15
|
||||
steps:
|
||||
- name: Get code
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
- name: Setup Python ${{ matrix.tox.python.version }}
|
||||
# Ensure matrix Python version is installed and available for tox
|
||||
uses: actions/setup-python@v2
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: ${{ matrix.tox.python.spec }}
|
||||
- name: Setup default Python
|
||||
# Change default Python version back to something consistent
|
||||
# for installing/running tox
|
||||
uses: actions/setup-python@v2
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: "3.8"
|
||||
- name: Install tox
|
||||
|
||||
Reference in New Issue
Block a user