chore(ci): Fix dependabot paths and CI warnings (#3982)

<img width="1090" alt="Screenshot 2024-03-05 at 3 48 57 PM"
src="https://github.com/firezone/firezone/assets/167144/c7d9f0c5-f0e9-479a-917c-6225da10188c">

<img width="846" alt="Screenshot 2024-03-05 at 3 49 21 PM"
src="https://github.com/firezone/firezone/assets/167144/f4d5765f-47e0-4c7e-b399-cde1f415764d">
This commit is contained in:
Jamil
2024-03-06 10:44:32 -08:00
committed by GitHub
parent 9cab250696
commit bd7aa814d9
4 changed files with 13 additions and 11 deletions

View File

@@ -106,7 +106,7 @@ updates:
- com.google.firebase:firebase-analytics-ktx
- package-ecosystem: swift
directory: swift/apple/FirezoneKit/
directory: swift/apple/Firezone.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/
schedule:
interval: monthly
- package-ecosystem: npm
@@ -114,7 +114,7 @@ updates:
schedule:
interval: monthly
- package-ecosystem: npm
directory: rust/windows-client/
directory: rust/gui-client/
schedule:
interval: monthly
- package-ecosystem: npm

View File

@@ -1,2 +1,2 @@
pre-commit==3.6.0
pre-commit==3.6.2
codespell==2.2.6

View File

@@ -2,6 +2,8 @@ name: "CodeQL"
on:
workflow_call:
push:
branches:
- main
jobs:
analyze:

View File

@@ -53,7 +53,7 @@ jobs:
run: mix deps.compile --skip-umbrella-children
- uses: actions/cache/save@v4
name: Save Elixir Deps Cache
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
if: ${{ github.ref_name == 'main' }}
env:
cache-name: elixir-deps-${{ env.MIX_ENV }}
with:
@@ -119,7 +119,7 @@ jobs:
run: mix deps.compile --skip-umbrella-children
- uses: actions/cache/save@v4
name: Save Elixir Deps Cache
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
if: ${{ github.ref_name == 'main' }}
env:
cache-name: elixir-deps-${{ env.MIX_ENV }}
with:
@@ -142,7 +142,7 @@ jobs:
if: ${{ steps.plt_cache.outputs.cache-hit != 'true' }}
run: mix dialyzer --plt
- uses: actions/cache/save@v4
if: ${{ steps.plt_cache.outputs.cache-hit != 'true' && github.ref == 'refs/heads/main' }}
if: ${{ github.ref_name == 'main' }}
name: Save PLT cache
with:
key: ubuntu-22.04-${{ runner.arch }}-${{ steps.setup-beam.outputs.elixir-version }}-${{ hashFiles('elixir/mix.lock') }}
@@ -186,7 +186,7 @@ jobs:
run: mix deps.compile --skip-umbrella-children
- uses: actions/cache/save@v4
name: Save Elixir Deps Cache
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
if: ${{ github.ref_name == 'main' }}
env:
cache-name: elixir-deps-${{ env.MIX_ENV }}
with:
@@ -265,7 +265,7 @@ jobs:
run: mix deps.compile --skip-umbrella-children
- uses: actions/cache/save@v4
name: Save Elixir Deps Cache
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
if: ${{ github.ref_name == 'main' }}
env:
cache-name: elixir-deps-${{ env.MIX_ENV }}
with:
@@ -414,7 +414,7 @@ jobs:
run: mix deps.compile --skip-umbrella-children
- uses: actions/cache/save@v4
name: Save Elixir Deps Cache
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
if: ${{ github.ref_name == 'main' }}
env:
cache-name: elixir-deps-${{ env.MIX_ENV }}
with:
@@ -443,7 +443,7 @@ jobs:
mix assets.setup
- uses: actions/cache/save@v4
name: Save pnpm Deps Cache
if: ${{ steps.pnpm-web-deps-cache.outputs.cache-hit != 'true' }}
if: ${{ github.ref_name == 'main' }}
env:
cache-name: pnpm-deps-web
with:
@@ -470,7 +470,7 @@ jobs:
mix assets.build
- uses: actions/cache/save@v4
name: Save Web Assets Cache
if: ${{ steps.pnpm-web-build-cache.outputs.cache-hit != 'true' }}
if: ${{ github.ref_name == 'main' }}
env:
cache-name: pnpm-build-web
with: