mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
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:
4
.github/dependabot.yml
vendored
4
.github/dependabot.yml
vendored
@@ -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
|
||||
|
||||
2
.github/requirements.txt
vendored
2
.github/requirements.txt
vendored
@@ -1,2 +1,2 @@
|
||||
pre-commit==3.6.0
|
||||
pre-commit==3.6.2
|
||||
codespell==2.2.6
|
||||
|
||||
2
.github/workflows/_codeql.yml
vendored
2
.github/workflows/_codeql.yml
vendored
@@ -2,6 +2,8 @@ name: "CodeQL"
|
||||
on:
|
||||
workflow_call:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
|
||||
16
.github/workflows/_elixir.yml
vendored
16
.github/workflows/_elixir.yml
vendored
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user