From dc35990026655c974916a4c8cc83e04ce8db4f23 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 9 Aug 2023 14:47:19 +0000 Subject: [PATCH] chore(deps): update dependency ubuntu to v22 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 877a6af..7e9b70f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ defaults: jobs: get-runner-user: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 outputs: uid_gid: ${{ steps.get-user.outputs.uid_gid }} steps: @@ -18,7 +18,7 @@ jobs: run: echo "uid_gid=$(id -u):$(id -g)" >> "$GITHUB_OUTPUT" build-and-deploy: needs: get-runner-user - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 container: image: "public.ecr.aws/docker/library/maven:3-eclipse-temurin-17" options: --user ${{ needs.get-runner-user.outputs.uid_gid }}