Skip to content

Commit 6b9f854

Browse files
authored
Merge pull request #6111 from radarhere/actions
Updated setup-python, checkout and upload-artifact actions to v3
2 parents c32f908 + 954aa4e commit 6b9f854

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

.github/workflows/cifuzz.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
language: python
3232
dry-run: false
3333
- name: Upload New Crash
34-
uses: actions/upload-artifact@v2
34+
uses: actions/upload-artifact@v3
3535
if: failure() && steps.build.outcome == 'success'
3636
with:
3737
name: artifacts
3838
path: ./out/artifacts
3939
- name: Upload Legacy Crash
40-
uses: actions/upload-artifact@v2
40+
uses: actions/upload-artifact@v3
4141
if: steps.run.outcome == 'success'
4242
with:
4343
name: crash

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Lint
1111

1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414

1515
- name: pre-commit cache
1616
uses: actions/cache@v2
@@ -21,7 +21,7 @@ jobs:
2121
lint-pre-commit-
2222
2323
- name: Set up Python
24-
uses: actions/setup-python@v2
24+
uses: actions/setup-python@v3
2525
with:
2626
python-version: "3.10"
2727
cache: pip

.github/workflows/test-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
name: ${{ matrix.docker }}
4242

4343
steps:
44-
- uses: actions/checkout@v2
44+
- uses: actions/checkout@v3
4545

4646
- name: Build system information
4747
run: python3 .github/workflows/system-info.py

.github/workflows/test-mingw.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
steps:
3131
- name: Checkout Pillow
32-
uses: actions/checkout@v2
32+
uses: actions/checkout@v3
3333

3434
- name: Set up shell
3535
run: echo "C:\msys64\usr\bin\" >> $env:GITHUB_PATH

.github/workflows/test-valgrind.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
name: ${{ matrix.docker }}
2929

3030
steps:
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v3
3232

3333
- name: Build system information
3434
run: python3 .github/workflows/system-info.py

.github/workflows/test-windows.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ jobs:
2323

2424
steps:
2525
- name: Checkout Pillow
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v3
2727

2828
- name: Checkout cached dependencies
29-
uses: actions/checkout@v2
29+
uses: actions/checkout@v3
3030
with:
3131
repository: python-pillow/pillow-depends
3232
path: winbuild\depends
3333

3434
# sets env: pythonLocation
3535
- name: Set up Python
36-
uses: actions/setup-python@v2
36+
uses: actions/setup-python@v3
3737
with:
3838
python-version: ${{ matrix.python-version }}
3939
architecture: ${{ matrix.architecture }}
@@ -156,7 +156,7 @@ jobs:
156156
shell: bash
157157

158158
- name: Upload errors
159-
uses: actions/upload-artifact@v2
159+
uses: actions/upload-artifact@v3
160160
if: failure()
161161
with:
162162
name: errors
@@ -182,7 +182,7 @@ jobs:
182182
winbuild\\build\\build_pillow.cmd --disable-imagequant bdist_wheel
183183
shell: cmd
184184

185-
- uses: actions/upload-artifact@v2
185+
- uses: actions/upload-artifact@v3
186186
if: "github.event_name != 'pull_request'"
187187
with:
188188
name: ${{ steps.wheel.outputs.dist }}

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ jobs:
3636
name: ${{ matrix.os }} Python ${{ matrix.python-version }}
3737

3838
steps:
39-
- uses: actions/checkout@v2
39+
- uses: actions/checkout@v3
4040

4141
- name: Set up Python ${{ matrix.python-version }}
42-
uses: actions/setup-python@v2
42+
uses: actions/setup-python@v3
4343
with:
4444
python-version: ${{ matrix.python-version }}
4545
cache: pip
@@ -84,7 +84,7 @@ jobs:
8484
mkdir -p Tests/errors
8585
8686
- name: Upload errors
87-
uses: actions/upload-artifact@v2
87+
uses: actions/upload-artifact@v3
8888
if: failure()
8989
with:
9090
name: errors

.github/workflows/tidelift.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v3
2121
- name: Scan
2222
uses: tidelift/alignment-action@main
2323
env:

0 commit comments

Comments
 (0)