Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
younesaassila committed Sep 21, 2024
1 parent f11946a commit 16cce7e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: Build and Test

on:
push:
branches:
- "**"
tags-ignore:
- "**"
branches: ["**"]
tags-ignore: ["**"]
pull_request:
branches:
- "**"
branches: ["**"]

jobs:
build:
concurrency: ci-${{ github.ref }}
name: Build
runs-on: ubuntu-latest
concurrency: ci-${{ github.ref }}

steps:
- uses: actions/checkout@v3
- name: Install dependencies
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,19 @@ name: "CodeQL"

on:
push:
branches: ["main"]
branches: ["v2"]
tags-ignore: ["**"]
pull_request:
# The branches below must be a subset of the branches above
branches: ["main"]
branches: ["v2"]
schedule:
- cron: "32 9 * * 6"

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
concurrency: ci-${{ github.ref }}
permissions:
actions: read
contents: read
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout Repository"
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: "Dependency Review"
uses: actions/dependency-review-action@v2
uses: actions/dependency-review-action@v4

0 comments on commit 16cce7e

Please sign in to comment.