Skip to content

Commit

Permalink
chore(deps): update base digest to 9b12788 (#82)
Browse files Browse the repository at this point in the history
* chore(deps): update base digest to 9b12788

* feat(workflows): update Ubuntu runners to `24.04`; add timeouts

* test: approve new changes

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dafydd Jones <dafydd@techneg.it>
  • Loading branch information
renovate[bot] and dafyddj authored Dec 14, 2024
1 parent 208a95f commit dffe8e5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
2 changes: 1 addition & 1 deletion base
11 changes: 7 additions & 4 deletions template/.github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:
jobs:
should-run:
name: Should run
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
timeout-minutes: 5
outputs:
should-run: ${{ steps.action.outputs.should-run }}
Expand All @@ -23,7 +23,8 @@ jobs:
name: Run `pre-commit`
needs: should-run
if: fromJSON(needs.should-run.outputs.should-run)
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
timeout-minutes: 5
env:
# renovate: datasource=custom.python-versions depName=actions/python-versions versioning=pep440
PYTHON_VERSION: 3.13.1
Expand All @@ -37,7 +38,8 @@ jobs:
name: Run approval tests
needs: should-run
if: fromJSON(needs.should-run.outputs.should-run)
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
timeout-minutes: 5
env:
# renovate: datasource=pypi depName=copier
COPIER_VERSION: 9.4.1
Expand Down Expand Up @@ -66,7 +68,8 @@ jobs:
issues: write
pull-requests: write
checks: read
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- uses: poseidon/wait-for-status-checks@899c768d191b56eef585c18f8558da19e1f3e707 # v0.6.0
with:
Expand Down
11 changes: 7 additions & 4 deletions test/GenerateProjectWithName/main_yml.tt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:
jobs:
should-run:
name: Should run
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
timeout-minutes: 5
outputs:
should-run: ${{ steps.action.outputs.should-run }}
Expand All @@ -23,7 +23,8 @@ jobs:
name: Run `pre-commit`
needs: should-run
if: fromJSON(needs.should-run.outputs.should-run)
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
timeout-minutes: 5
env:
# renovate: datasource=custom.python-versions depName=actions/python-versions versioning=pep440
PYTHON_VERSION: 3.13.1
Expand All @@ -37,7 +38,8 @@ jobs:
name: Run approval tests
needs: should-run
if: fromJSON(needs.should-run.outputs.should-run)
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
timeout-minutes: 5
env:
# renovate: datasource=pypi depName=copier
COPIER_VERSION: 9.4.1
Expand Down Expand Up @@ -66,7 +68,8 @@ jobs:
issues: write
pull-requests: write
checks: read
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- uses: poseidon/wait-for-status-checks@899c768d191b56eef585c18f8558da19e1f3e707 # v0.6.0
with:
Expand Down

0 comments on commit dffe8e5

Please sign in to comment.