From 36bea96184d6d9099e13d9616c6bf61da902c2d3 Mon Sep 17 00:00:00 2001 From: nodiscc Date: Thu, 8 Feb 2024 23:37:39 +0100 Subject: [PATCH 1/2] doc: fix link to actions in README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 04bff37..254be0d 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ python-shaarli-client ===================== .. image:: https://github.com/shaarli/python-shaarli-client/actions/workflows/ci.yml/badge.svg - :target: https://github.com/nodiscc/python-shaarli-client/actions + :target: https://github.com/shaarli/python-shaarli-client/actions :alt: Github Actions build status .. image:: https://readthedocs.org/projects/python-shaarli-client/badge/?version=latest From 4dff54aecc2fd2271ea1ed9e203104305e2caf88 Mon Sep 17 00:00:00 2001 From: nodiscc Date: Fri, 9 Feb 2024 21:22:24 +0100 Subject: [PATCH 2/2] tools: github actions: ubuntu-18.04 runners are no longer available - https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6c47814..b2ac90a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: python-shaarli-client CI on: [push, pull_request] jobs: tox: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 strategy: matrix: python-version: ['3.6', '3.7', '3.8', '3.9']