From b73c94c401400fc2bdd18d3577fd99ffae1ef8ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Garc=C3=ADa=20Isa=C3=ADa?= Date: Fri, 21 Feb 2025 10:51:14 -0300 Subject: [PATCH] Update Github Actions' runner image (#946) `ubuntu-20.04` is getting deprecated. See actions/runner-images#11101 See manastech/infra#99 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e6241771..2f43e44d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,9 +4,9 @@ on: [push, pull_request] jobs: test: - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set environment up run: | @@ -25,12 +25,12 @@ jobs: build: needs: test - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 env: DOCKER_REPOSITORY: 'instedd/verboice' DOCKER_USER: ${{ secrets.DOCKER_USER }} DOCKER_PASS: ${{ secrets.DOCKER_PASS }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Build image & push to Docker Hub run: ./build.sh