Skip to content

Commit

Permalink
Merge pull request #255 from bgilbert/fix-builder
Browse files Browse the repository at this point in the history
workflows: perform builder container builds on Ubuntu 24.04
  • Loading branch information
bgilbert authored May 21, 2024
2 parents 1ee6e29 + 0b788f2 commit caefb9f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/container-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ name: Container - Linux
on:
push:
branches: [main]
paths: [builder/linux/*]
paths: [.github/workflows/container-linux.yml, builder/linux/*]
pull_request:
branches: [main]
paths: [builder/linux/*]
paths: [.github/workflows/container-linux.yml, builder/linux/*]
schedule:
- cron: "40 14 1 * *"
workflow_dispatch:
Expand All @@ -26,7 +26,7 @@ env:
jobs:
container:
name: Build
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Check out repository
uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/container-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ name: Container - Windows
on:
push:
branches: [main]
paths: [builder/windows/*]
paths: [.github/workflows/container-windows.yml, builder/windows/*]
pull_request:
branches: [main]
paths: [builder/windows/*]
paths: [.github/workflows/container-windows.yml, builder/windows/*]
schedule:
- cron: "40 14 1 * *"
workflow_dispatch:
Expand All @@ -26,7 +26,7 @@ env:
jobs:
container:
name: Build
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Check out repository
uses: actions/checkout@v4
Expand Down

0 comments on commit caefb9f

Please sign in to comment.