From d916528e237cb574c27c2cb8ef64d30ffce78df0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Garc=C3=ADa=20Isa=C3=ADa?= Date: Thu, 20 Feb 2025 18:40:01 -0300 Subject: [PATCH] Update Github Actions' runner image They're 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