Skip to content

Commit 5f049db

Browse files
authored
Merge pull request #236 from learningequality/dependabot/github_actions/github-3f8b52ffcc
Bump the github group with 3 updates
2 parents 69edd75 + fb023d0 commit 5f049db

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

.github/workflows/check-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v2
25-
- uses: actions/setup-python@v2
24+
- uses: actions/checkout@v4
25+
- uses: actions/setup-python@v5
2626
with:
2727
python-version: 3.9
2828
- name: pip cache
29-
uses: actions/cache@v2
29+
uses: actions/cache@v4
3030
with:
3131
path: ~/.cache/pip
3232
key: ${{ runner.os }}-pip-docs-${{ hashFiles('requirements/docs.txt') }}

.github/workflows/check_migrations_sqlite.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
needs: pre_job
2121
runs-on: ubuntu-20.04
2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v4
2424
- name: Set up Python 3.7
2525
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
26-
uses: actions/setup-python@v2
26+
uses: actions/setup-python@v5
2727
with:
2828
python-version: 3.7
2929
- name: Install build dependencies

.github/workflows/python-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
deploy:
1717
runs-on: ubuntu-22.04
1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020
- name: Set up Python
21-
uses: actions/setup-python@v3
21+
uses: actions/setup-python@v5
2222
with:
2323
python-version: 3.9
2424
- name: Install dependencies

.github/workflows/tox.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
python-version: [ 3.6, 3.7, 3.8, 3.9, '3.10', '3.11', '3.12', '3.13' ]
2626

2727
steps:
28-
- uses: actions/checkout@v2
28+
- uses: actions/checkout@v4
2929
- name: Set up Python ${{ matrix.python-version }}
3030
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
31-
uses: actions/setup-python@v2
31+
uses: actions/setup-python@v5
3232
with:
3333
python-version: ${{ matrix.python-version }}
3434
- name: Install tox
@@ -38,7 +38,7 @@ jobs:
3838
pip install tox
3939
- name: tox env cache
4040
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
41-
uses: actions/cache@v2
41+
uses: actions/cache@v4
4242
with:
4343
path: ${{ github.workspace }}/.tox/py${{ matrix.python-version }}
4444
key: ${{ runner.os }}-tox-py${{ matrix.python-version }}-${{ hashFiles('setup.py', 'requirements/*.txt') }}
@@ -57,10 +57,10 @@ jobs:
5757
python-version: [ 3.6, 3.7, 3.8, 3.9, '3.10', '3.11', '3.12', '3.13' ]
5858

5959
steps:
60-
- uses: actions/checkout@v2
60+
- uses: actions/checkout@v4
6161
- name: Set up Python ${{ matrix.python-version }}
6262
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
63-
uses: actions/setup-python@v2
63+
uses: actions/setup-python@v5
6464
with:
6565
python-version: ${{ matrix.python-version }}
6666
- name: Install system dependencies
@@ -75,7 +75,7 @@ jobs:
7575
pip install tox
7676
- name: tox env cache
7777
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
78-
uses: actions/cache@v2
78+
uses: actions/cache@v4
7979
with:
8080
path: ${{ github.workspace }}/.tox/py${{ matrix.python-version }}-cryptography${{ env.cryptography_version }}
8181
key: ${{ runner.os }}-tox-py${{ matrix.python-version }}-crypto${{ env.cryptography_version }}-${{ hashFiles('setup.py', 'requirements/*.txt') }}
@@ -106,10 +106,10 @@ jobs:
106106
# Maps tcp port 5432 on service container to the host
107107
- 5432:5432
108108
steps:
109-
- uses: actions/checkout@v2
109+
- uses: actions/checkout@v4
110110
- name: Set up Python 3.9 for Postgres
111111
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
112-
uses: actions/setup-python@v2
112+
uses: actions/setup-python@v5
113113
with:
114114
python-version: 3.9
115115
- name: Install tox
@@ -119,7 +119,7 @@ jobs:
119119
pip install tox
120120
- name: tox env cache
121121
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
122-
uses: actions/cache@v2
122+
uses: actions/cache@v4
123123
with:
124124
path: ${{ github.workspace }}/.tox/py3.9-postgres
125125
key: ${{ runner.os }}-tox-py3.9-postgres-${{ hashFiles('setup.py', 'requirements/*.txt') }}
@@ -136,10 +136,10 @@ jobs:
136136
python-version: [3.8]
137137

138138
steps:
139-
- uses: actions/checkout@v2
139+
- uses: actions/checkout@v4
140140
- name: Set up Python ${{ matrix.python-version }}
141141
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
142-
uses: actions/setup-python@v2
142+
uses: actions/setup-python@v5
143143
with:
144144
python-version: ${{ matrix.python-version }}
145145
- name: Install tox

0 commit comments

Comments
 (0)