From e7be7616c42015b055449ceb028e936553a729f4 Mon Sep 17 00:00:00 2001 From: Jonathan Gonzalez V Date: Tue, 13 Jun 2023 14:40:19 +0200 Subject: [PATCH] chore: update ubuntu and python versions (#61) --- .github/workflows/build.yml | 4 ++-- .github/workflows/update.yml | 6 +++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 86aaede5..d00dd58b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ env: jobs: generate-jobs: name: Generate Jobs - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 outputs: strategy: ${{ steps.generate-jobs.outputs.strategy }} steps: @@ -29,7 +29,7 @@ jobs: needs: generate-jobs strategy: ${{ fromJson(needs.generate-jobs.outputs.strategy) }} name: ${{ matrix.name }} - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 permissions: contents: read packages: write diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index ca579bce..940d0b89 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -11,11 +11,15 @@ defaults: jobs: build: - runs-on: ubuntu-20.04 + name: Run update script + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 with: token: ${{ secrets.REPO_GHA_PAT }} + - uses: actions/setup-python@v4 + with: + python-version: '3.11' - name: Run update script uses: nick-fields/retry@v2 with: