mirror of
https://github.com/teslamate-org/teslamate.git
synced 2026-01-24 21:06:08 +08:00
* build(deps): bump actions/cache from 4.3.0 to 5.0.1
Bumps [actions/cache](https://github.com/actions/cache) from 4.3.0 to 5.0.1.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](0057852bfa...9255dc7a25)
---
updated-dependencies:
- dependency-name: actions/cache
dependency-version: 5.0.1
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
* docs: update changelog
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jakob Lichterfeld <jakob-lichterfeld@gmx.de>
71 lines
2.3 KiB
YAML
71 lines
2.3 KiB
YAML
name: Elixir Dependency Verification and Static Analysis
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
env:
|
|
CACHE_NAME_DEPS: cache-elixir-deps
|
|
CACHE_NAME_COMPILED_DEV: cache-compiled-dev-build
|
|
CACHE_NAME_COMPILED_TEST: cache-compiled-test-build
|
|
ELIXIR_ASSERT_TIMEOUT: 1000
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
verify_dependencies_and_static_analysis:
|
|
name: Verify dependencies, POT files, unused dependencies, static analysis
|
|
runs-on: ubuntu-24.04
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
steps:
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
|
|
- name: Setup Elixir and Cache Dependencies
|
|
id: setup-elixir-and-cache-deps
|
|
uses: ./.github/actions/setup-elixir-and-cache-deps
|
|
with:
|
|
cache-name-deps: ${{ env.CACHE_NAME_DEPS }}
|
|
cache-name-compiled: ${{ env.CACHE_NAME_COMPILED_DEV }}
|
|
mix-env: dev
|
|
|
|
- name: Compile without warnings
|
|
run: mix compile --warnings-as-errors
|
|
shell: sh
|
|
|
|
- name: Verify that POT files are up to date
|
|
run: mix gettext.extract --check-up-to-date
|
|
|
|
- name: Check unused dependencies
|
|
run: mix deps.unlock --check-unused
|
|
|
|
- name: Restore PLT cache
|
|
id: plt_cache
|
|
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
|
|
with:
|
|
key: |
|
|
${{ runner.os }}-${{ steps.setup-elixir-and-cache-deps.outputs.elixir-version }}-${{ steps.setup-elixir-and-cache-deps.outputs.otp-version }}-plt
|
|
restore-keys: |
|
|
${{ runner.os }}-${{ steps.setup-elixir-and-cache-deps.outputs.elixir-version }}-${{ steps.setup-elixir-and-cache-deps.outputs.otp-version }}-plt
|
|
path: |
|
|
priv/plts
|
|
|
|
- name: Create Persistent Lookup Tables (PLTs) for Dialyzer
|
|
if: steps.plt_cache.outputs.cache-hit != 'true'
|
|
run: mix dialyzer --plt
|
|
|
|
- name: Save PLT cache
|
|
id: plt_cache_save
|
|
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
|
|
if: steps.plt_cache.outputs.cache-hit != 'true'
|
|
with:
|
|
key: |
|
|
${{ runner.os }}-${{ steps.setup-elixir-and-cache-deps.outputs.elixir-version }}-${{ steps.setup-elixir-and-cache-deps.outputs.otp-version }}-plt
|
|
path: |
|
|
priv/plts
|
|
|
|
- name: Run dialyzer for static analysis
|
|
run: mix dialyzer --format github
|