Skip to content

Commit

Permalink
up releases of setup action
Browse files Browse the repository at this point in the history
  • Loading branch information
vot4anto committed Oct 4, 2024
1 parent dbdc8ca commit 2b55da3
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/test_linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ jobs:
TRAVIS_OS_NAME: ${{ matrix.os-name }}
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.macos-target }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.10
- name: get code of pyproj
env:
REPO_DIR: pyproj
Expand All @@ -50,7 +50,7 @@ jobs:
run: |
sudo apt install python3-virtualenv
bash -x .github/workflows/wheel.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: wheels
path: wheelhouse
Expand All @@ -77,12 +77,12 @@ jobs:
TRAVIS_OS_NAME: ${{ matrix.os-name }}
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.macos-target }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.10
- name: get code of Fiona
env:
REPO_DIR: Fiona
Expand All @@ -104,7 +104,7 @@ jobs:
echo $PATH
sudo apt install python3-virtualenv
bash -x .github/workflows/wheel.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: wheels
path: wheelhouse
Expand All @@ -130,12 +130,12 @@ jobs:
TRAVIS_OS_NAME: ${{ matrix.os-name }}
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.macos-target }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.10
- name: get code of GDAL
env:
REPO_DIR: gdal
Expand All @@ -153,7 +153,7 @@ jobs:
run: |
sudo apt install python3-virtualenv
bash -x .github/workflows/wheel.sh
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: wheels
path: wheelhouse
Expand All @@ -170,11 +170,11 @@ jobs:

steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
id: download
with:
name: wheels
Expand Down

0 comments on commit 2b55da3

Please sign in to comment.