From: Alec Delaney <89490472+tekktrik@users.noreply.github.com> Date: Fri, 27 Jan 2023 00:52:30 +0000 (-0500) Subject: Update CI for deprecation warnings X-Git-Tag: 8.14.0~1^2 X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/commitdiff_plain/caa5f72550d31642469a7316afd14ef7e98bdeed Update CI for deprecation warnings --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5fe5064..ea5eab5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,20 +15,20 @@ jobs: run: echo "$GITHUB_CONTEXT" - name: Translate Repo Name For Build Tools filename_prefix id: repo-name - run: echo ::set-output name=repo-name::Adafruit-Blinka + run: echo "repo-name=Adafruit-Blinka" >> $GITHUB_OUTPUT - name: Set up Python 3.7 - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: 3.7 - name: Versions run: | python3 --version - name: Checkout Current Repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: true - name: Checkout tools repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: adafruit/actions-ci-circuitpython-libs path: actions-ci diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f8399b7..a0eb8f5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,14 +11,14 @@ jobs: upload-pypi: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Check For setup.py id: need-pypi run: | - echo ::set-output name=setup-py::$( find . -wholename './setup.py' ) + echo "setup-py=$( find . -wholename './setup.py' )" >> $GITHUB_OUTPUT - name: Set up Python if: contains(steps.need-pypi.outputs.setup-py, 'setup.py') - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: '3.x' - name: Install dependencies