Skip to content

Commit a6ccf4b

Browse files
JasonGrace2282NotFish232
authored andcommitted
chore: bump github action versions
1 parent 73e0311 commit a6ccf4b

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/ci.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@
3232
},
3333
{
3434
"name": "Set up Python ${{ matrix.python-version }}",
35-
"uses": "actions/setup-python@v2",
35+
"uses": "actions/setup-python@v5",
3636
"with": {
3737
"python-version": "${{ matrix.python-version }}"
3838
}
3939
},
4040
{
4141
"name": "Set up pip cache",
42-
"uses": "actions/cache@v2",
42+
"uses": "actions/cache@v4",
4343
"with": {
4444
"path": "~/.cache/pip",
4545
"key": "pip-${{ matrix.python-version }}"
@@ -72,21 +72,21 @@
7272
"steps": [
7373
{
7474
"name": "Set up repo (fetching all commits)",
75-
"uses": "actions/checkout@v2",
75+
"uses": "actions/checkout@v4",
7676
"with": {
7777
"fetch-depth": 0
7878
}
7979
},
8080
{
8181
"name": "Set up Python ${{ matrix.python-version }}",
82-
"uses": "actions/setup-python@v2",
82+
"uses": "actions/setup-python@v5",
8383
"with": {
8484
"python-version": "${{ matrix.python-version }}"
8585
}
8686
},
8787
{
8888
"name": "Set up pip cache",
89-
"uses": "actions/cache@v2",
89+
"uses": "actions/cache@v4",
9090
"with": {
9191
"path": "~/.cache/pip",
9292
"key": "pip-${{ matrix.python-version }}"
@@ -180,14 +180,14 @@
180180
},
181181
{
182182
"name": "Set up Python ${{ matrix.python-version }}",
183-
"uses": "actions/setup-python@v2",
183+
"uses": "actions/setup-python@v5",
184184
"with": {
185185
"python-version": "${{ matrix.python-version }}"
186186
}
187187
},
188188
{
189189
"name": "Set up pip cache",
190-
"uses": "actions/cache@v2",
190+
"uses": "actions/cache@v4",
191191
"with": {
192192
"path": "~/.cache/pip",
193193
"key": "pip-${{ matrix.python-version }}"
@@ -203,7 +203,7 @@
203203
},
204204
{
205205
"name": "Set up Node.js ${{ matrix.node-version }}",
206-
"uses": "actions/setup-node@v1",
206+
"uses": "actions/setup-node@v4",
207207
"with": {
208208
"node-version": "${{ matrix.node-version }}"
209209
}

ci/spec.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ env:
2929

3030
python_setup: &python_setup
3131
name: Set up Python ${{ matrix.python-version }}
32-
uses: actions/setup-python@v2
32+
uses: actions/setup-python@v5
3333
with:
3434
python-version: ${{ matrix.python-version }}
3535

@@ -39,13 +39,13 @@ env:
3939

4040
repo_setup_fetch_all: &repo_setup_fetch_all
4141
name: Set up repo (fetching all commits)
42-
uses: actions/checkout@v2
42+
uses: actions/checkout@v4
4343
with:
4444
fetch-depth: 0
4545

4646
setup_pip_cache: &setup_pip_cache
4747
name: Set up pip cache
48-
uses: actions/cache@v2
48+
uses: actions/cache@v4
4949
with:
5050
path: ~/.cache/pip
5151
key: pip-${{ matrix.python-version }}
@@ -171,7 +171,7 @@ jobs:
171171

172172
# Node setup
173173
- name: Set up Node.js ${{ matrix.node-version }}
174-
uses: actions/setup-node@v1
174+
uses: actions/setup-node@v4
175175
with:
176176
node-version: ${{ matrix.node-version }}
177177
- name: Install Sass and add Node modules bin to PATH

0 commit comments

Comments
 (0)