Skip to content

chore(deps-dev): bump mimic from 2.2.0 to 2.3.0 #174

chore(deps-dev): bump mimic from 2.2.0 to 2.3.0

chore(deps-dev): bump mimic from 2.2.0 to 2.3.0 #174

Workflow file for this run

name: mix hex.audit
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
env:
MIX_ENV: test
strategy:
matrix:
elixir: [1.18.4]
otp: [27.3.4.3]
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}
- name: Retrieve Mix Dependencies Cache
uses: actions/cache@v4
id: mix-cache
with:
path: deps
key: ${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
- name: Install Mix Dependencies
if: steps.mix-cache.outputs.cache-hit != 'true'
run: |
mix local.rebar --force
mix local.hex --force
mix deps.get
- run: mix hex.audit