Compare commits

...

4 Commits
1.0.2 ... main

Author SHA1 Message Date
07f45530c1 Merge pull request 'Update ghcr.io/renovatebot/renovate Docker tag to v43.2.6' (#580) from renovate/ghcr.io-renovatebot-renovate-43.x into main
All checks were successful
Laravel / laravel-tests (push) Successful in 4m25s
renovate / renovate (push) Successful in 1m0s
2026-02-03 21:51:24 +00:00
Renovate Bot
b80081e616 Update ghcr.io/renovatebot/renovate Docker tag to v43.2.6
All checks were successful
Laravel / laravel-tests (pull_request) Successful in 4m32s
2026-02-03 21:51:18 +00:00
4af6061100 added GitHub token
Some checks failed
Laravel / laravel-tests (push) Successful in 4m32s
renovate / renovate (push) Has been cancelled
2026-02-03 21:46:03 +00:00
10f5799da2 added commit hash to version
All checks were successful
Laravel / laravel-tests (push) Successful in 4m44s
renovate / renovate (push) Successful in 35s
2026-02-03 22:10:56 +10:00
3 changed files with 11 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ on:
jobs: jobs:
renovate: renovate:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:43.2.4 container: ghcr.io/renovatebot/renovate:43.2.6
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@@ -21,4 +21,5 @@ jobs:
RENOVATE_CONFIG_FILE: "renovate-config.json" RENOVATE_CONFIG_FILE: "renovate-config.json"
LOG_LEVEL: "info" LOG_LEVEL: "info"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
GITHUB_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }}

View File

@@ -125,4 +125,5 @@ return [
'notice' => env('APP_NOTICE', ''), 'notice' => env('APP_NOTICE', ''),
'version' => env('APP_VERSION', 'dev'), 'version' => env('APP_VERSION', 'dev'),
'commit' => env('APP_COMMIT', ''),
]; ];

View File

@@ -25,6 +25,13 @@
</section> </section>
<section class="border-t border-t-gray-600 pt-8 flex justify-between text-xs items-center flex-col sm:flex-row"> <section class="border-t border-t-gray-600 pt-8 flex justify-between text-xs items-center flex-col sm:flex-row">
<div class="mb-3 sm:mb-0">@includeSVG('logo.svg', 'width:10rem;margin-top:-0.2rem;color:#DDD')</div> <div class="mb-3 sm:mb-0">@includeSVG('logo.svg', 'width:10rem;margin-top:-0.2rem;color:#DDD')</div>
<div>Made with ❤️&nbsp;© {{ date('Y') }} STEMMechanics v{{ config('app.version') }}</div> @php $commit = config('app.commit'); @endphp
<div>
Made with ❤️&nbsp;© {{ date('Y') }} STEMMechanics
v{{ config('app.version') }}
@if(!empty($commit))
({{ substr($commit, 0, 10) }})
@endif
</div>
</section> </section>
</footer> </footer>