Skip to content

Commit

Permalink
Update Github Actions' runner image (#946)
Browse files Browse the repository at this point in the history
`ubuntu-20.04` is getting deprecated.

See actions/runner-images#11101
See manastech/infra#99
  • Loading branch information
matiasgarciaisaia authored Feb 21, 2025
1 parent 509bcd0 commit b73c94c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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

0 comments on commit b73c94c

Please sign in to comment.