From 3004a125948821eb4c0458a8e5b2030ecf3062b6 Mon Sep 17 00:00:00 2001 From: Nezar Abdennur Date: Sun, 14 Apr 2024 05:58:30 -0400 Subject: [PATCH] Upgrade action versions --- .github/workflows/buildwheels.yml | 10 +++++----- .github/workflows/{python-package.yml => ci.yml} | 6 +++--- README.md | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) rename .github/workflows/{python-package.yml => ci.yml} (92%) diff --git a/.github/workflows/buildwheels.yml b/.github/workflows/buildwheels.yml index acccde6..ce1f26e 100644 --- a/.github/workflows/buildwheels.yml +++ b/.github/workflows/buildwheels.yml @@ -14,22 +14,22 @@ jobs: os: [ubuntu-20.04, macos-12, macos-latest] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: - python-version: '3.8' + python-version: '3.9' - name: Set up QEMU if: runner.os == 'Linux' - uses: docker/setup-qemu-action@v1 + uses: docker/setup-qemu-action@v3 with: platforms: all - name: Build wheels uses: pypa/cibuildwheel@v2.17.0 - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: path: ./wheelhouse/*.whl diff --git a/.github/workflows/python-package.yml b/.github/workflows/ci.yml similarity index 92% rename from .github/workflows/python-package.yml rename to .github/workflows/ci.yml index 4f2fc90..5d478bc 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/ci.yml @@ -1,7 +1,7 @@ # This workflow will install Python dependencies, run tests and lint with a variety of Python versions # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions -name: Build and test on Linux +name: CI on: push: @@ -23,9 +23,9 @@ jobs: run: | sudo apt-get update sudo apt-get install -y build-essential make zlib1g-dev libssl-dev libpng-dev - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Build UCSC kent library diff --git a/README.md b/README.md index ddfb2ee..75f2149 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # pybbi # -![Build Status](https://github.com/nvictus/pybbi/actions/workflows/python-package.yml/badge.svg) +![Build Status](https://github.com/nvictus/pybbi/actions/workflows/ci.yml/badge.svg) [![DOI](https://zenodo.org/badge/58960207.svg)](https://zenodo.org/doi/10.5281/zenodo.10382980) Python interface to Jim Kent's Big Binary Indexed file (BBI) \[[1](#ref1)\] library from the [UCSC Genome Browser source tree](https://github.com/ucscGenomeBrowser/kent) using Cython.