Skip to content

Commit

Permalink
CI: handle warnings from GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
PMeira committed May 25, 2023
1 parent 948dae5 commit 8dc4285
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Try installing the wheel
run: bash dss_python/ci/test_wheel.sh
- name: 'Upload artifacts'
uses: "actions/upload-artifact@v2"
uses: "actions/upload-artifact@v3"
with:
name: 'packages'
path: '${{ github.workspace }}/artifacts'
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
mkdir -p artifacts_raw
docker run -e GITHUB_SHA -e GITHUB_REF -v "${PWD}:/build" -w /build $DOCKER_IMAGE bash /build/dss_python/ci/build_linux.sh x86
- name: 'Upload artifacts'
uses: "actions/upload-artifact@v2"
uses: "actions/upload-artifact@v3"
with:
name: 'packages'
path: '${{ github.workspace }}/artifacts'
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
# sudo chown -R $UID $CONDA
# bash dss_python/ci/build_conda.sh
- name: 'Upload artifacts'
uses: "actions/upload-artifact@v2"
uses: "actions/upload-artifact@v3"
with:
name: 'packages'
path: '${{ github.workspace }}/artifacts'
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
# sudo chown -R $UID $CONDA
# bash dss_python/ci/build_conda.sh
- name: 'Upload artifacts'
uses: "actions/upload-artifact@v2"
uses: "actions/upload-artifact@v3"
with:
name: 'packages'
path: '${{ github.workspace }}/artifacts'
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
# run: |
# bash dss_python/ci/build_conda.sh
- name: 'Upload artifacts'
uses: "actions/upload-artifact@v2"
uses: "actions/upload-artifact@v3"
with:
name: 'packages'
path: '${{ github.workspace }}/artifacts'
Expand All @@ -194,7 +194,7 @@ jobs:
with:
fetch-depth: 0
path: 'dss_python'
- uses: actions/setup-python@v2
- uses: actions/setup-python@v3
with:
python-version: '3.7'
architecture: 'x86'
Expand All @@ -209,7 +209,7 @@ jobs:
run: |
bash dss_python/ci/build_wheel.sh
- name: 'Upload artifacts'
uses: "actions/upload-artifact@v2"
uses: "actions/upload-artifact@v3"
with:
name: 'packages'
path: '${{ github.workspace }}/artifacts'
Expand Down

0 comments on commit 8dc4285

Please sign in to comment.