Skip to content

Commit

Permalink
Merge pull request #15 from eseiler/infra/image
Browse files Browse the repository at this point in the history
[INFRA] Use ubuntu-latest
  • Loading branch information
eseiler authored Jan 29, 2025
2 parents c277cda + ccb08e2 commit 245ca02
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: "0 4 * * TUE"

env:
TZ: Europe/Berlin
Expand All @@ -19,7 +21,8 @@ defaults:
jobs:
license_check:
name: "REUSE Compliance"
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
if: github.repository_owner == 'seqan' || github.event_name == 'workflow_dispatch'
timeout-minutes: 5
steps:
- name: Checkout
Expand All @@ -31,7 +34,8 @@ jobs:
build:
name: "Scavenger Hunt"
needs: [license_check]
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
if: github.repository_owner == 'seqan' || github.event_name == 'workflow_dispatch'
timeout-minutes: 10
steps:
- name: Checkout
Expand Down

0 comments on commit 245ca02

Please sign in to comment.