From 7dce84a58b5b7e70e48f8f80467fdfc68ec9c8a1 Mon Sep 17 00:00:00 2001 From: Nils Hamerlinck Date: Mon, 15 Jan 2024 17:25:49 +0700 Subject: [PATCH] [FIX] pre-commit: use ubuntu-22.04 / python 3.11 to align with other oca addons repos, see: https://github.com/OCA/oca-addons-repo-template/blob/master/src/.github/workflows/pre-commit.yml.jinja --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a6a69fc..87c02f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,10 +10,12 @@ on: jobs: pre-commit: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 + with: + python-version: "3.11" - uses: pre-commit/action@v2.0.0 deploy: runs-on: ubuntu-latest