Skip to content

Commit

Permalink
ci(github): upgrade runners to Ubuntu 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomasz Gągor committed Nov 11, 2024
1 parent ba2eba8 commit 615d5d5
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@ name: build
on:
push:
paths-ignore:
- 'README.md'
- "README.md"
branches:
- master
- 'feature/*'
- 'bugfix/*'
- "feature/*"
- "bugfix/*"
tags:
- '*.*.*'
- "*.*.*"
pull_request:
branches:
- master
schedule:
# weekly: at 04:13 on Monday
- cron: '13 4 * * 1'
- cron: "13 4 * * 1"

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
tag:
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
docker push ghcr.io/tgagor/centos:${{ matrix.tag }}-${{ github.sha }}
security-scan:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- build
strategy:
Expand All @@ -92,7 +92,7 @@ jobs:
with:
image-ref: ghcr.io/tgagor/centos:${{ matrix.tag }}-${{ github.sha }}
format: template
template: '@/contrib/sarif.tpl'
template: "@/contrib/sarif.tpl"
# don't fail
exit-code: 0
output: trivy-results.sarif
Expand All @@ -105,7 +105,7 @@ jobs:
sarif_file: trivy-results.sarif

release:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- build
- security-scan
Expand Down

0 comments on commit 615d5d5

Please sign in to comment.