Skip to content

Commit cc25165

Browse files
authored
Merge pull request #6 from pybuilder/update_actions
Update checkout to v3 and setup-python to v4
2 parents f834879 + 327b692 commit cc25165

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
os:
1616
- ubuntu-latest
1717
- windows-latest
18-
- macos-10.15
1918
- macos-11
19+
- macos-12
2020
python-version:
2121
- '3.10'
2222
- '3.9'
@@ -29,7 +29,7 @@ jobs:
2929
- 'true'
3030
- 'false'
3131
steps:
32-
- uses: actions/checkout@v2
32+
- uses: actions/checkout@v3
3333
- uses: ./
3434
if: |
3535
!(matrix.with-homebrew == 'true' && runner.os != 'macOS' ||

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ runs:
5959
echo "PYTHON=python${PV%%.*}" >> $GITHUB_ENV
6060
- name: Checkout
6161
if: inputs.checkout == 'true'
62-
uses: actions/checkout@v2
62+
uses: actions/checkout@v3
6363
- name: Setup Python
6464
if: inputs.install-python == 'true' && (runner.os != 'macOS' || inputs.homebrew-python != 'true')
65-
uses: actions/setup-python@v2
65+
uses: actions/setup-python@v4
6666
with:
6767
python-version: '${{ inputs.python-version }}'
6868
architecture: '${{ inputs.architecture }}'

0 commit comments

Comments
 (0)