Skip to content

Commit c74ee82

Browse files
authored
Merge pull request #6616 from python-pillow/renovate/github-actions
Update github-actions
2 parents a0faec1 + 9c8a909 commit c74ee82

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616
- uses: actions/checkout@v3
1717

1818
- name: pre-commit cache
19-
uses: actions/cache@v2
19+
uses: actions/cache@v3
2020
with:
2121
path: ~/.cache/pre-commit
2222
key: lint-pre-commit-${{ hashFiles('**/.pre-commit-config.yaml') }}
2323
restore-keys: |
2424
lint-pre-commit-
2525
2626
- name: Set up Python
27-
uses: actions/setup-python@v3
27+
uses: actions/setup-python@v4
2828
with:
2929
python-version: "3.10"
3030
cache: pip

.github/workflows/stale.yml

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

1717
steps:
1818
- name: "Check issues"
19-
uses: actions/stale@v5
19+
uses: actions/stale@v6
2020
with:
2121
repo-token: ${{ secrets.GITHUB_TOKEN }}
2222
only-labels: "Awaiting OP Action"

.github/workflows/test-cygwin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
qt5-devel-tools subversion xorg-server-extra zlib-devel
4545
4646
- name: Add Lapack to PATH
47-
uses: egor-tensin/cleanup-path@v1
47+
uses: egor-tensin/cleanup-path@v2
4848
with:
4949
dirs: 'C:\cygwin\bin;C:\cygwin\lib\lapack'
5050

.github/workflows/test-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
# sets env: pythonLocation
3838
- name: Set up Python
39-
uses: actions/setup-python@v3
39+
uses: actions/setup-python@v4
4040
with:
4141
python-version: ${{ matrix.python-version }}
4242
architecture: ${{ matrix.architecture }}
@@ -66,7 +66,7 @@ jobs:
6666

6767
- name: Cache build
6868
id: build-cache
69-
uses: actions/cache@v2
69+
uses: actions/cache@v3
7070
with:
7171
path: winbuild\build
7272
key:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/checkout@v3
3939

4040
- name: Set up Python ${{ matrix.python-version }}
41-
uses: actions/setup-python@v3
41+
uses: actions/setup-python@v4
4242
with:
4343
python-version: ${{ matrix.python-version }}
4444
cache: pip

0 commit comments

Comments
 (0)