diff options
| author | Eli Schwartz <eschwartz@archlinux.org> | 2022-11-03 15:50:52 -0400 |
|---|---|---|
| committer | Eli Schwartz <eschwartz@archlinux.org> | 2022-11-28 23:29:49 -0500 |
| commit | bf1fbfd59069dd31bca487e6c12b40a7d037d19f (patch) | |
| tree | 2c9929a7710645ccb0f8f2c376859154cc03e58c /.github/workflows/macos.yml | |
| parent | d32ee583ada8304fb31d11382bc6055f6239a99b (diff) | |
| download | meson-bf1fbfd59069dd31bca487e6c12b40a7d037d19f.tar.gz | |
github workflows: upgrade setup-python to version 4
Not much changes, really, other than it now sets PKG_CONFIG_PATH to
point to the python it just installed. This should generally not be a
problem (Meson's python module sets that anyway based on the
executable's introspection data).
Diffstat (limited to '.github/workflows/macos.yml')
| -rw-r--r-- | .github/workflows/macos.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index b620b4311..0f5aa8e8a 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -28,7 +28,7 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 with: python-version: '3.x' - run: | @@ -101,7 +101,7 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 with: python-version: '3.x' - run: python -m pip install -e . |
