Skip to content

Commit

Permalink
CI: updated actions
Browse files Browse the repository at this point in the history
  • Loading branch information
glpatcern committed May 23, 2024
1 parent 2dd4ef5 commit 8a72523
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
name: Linting and unit tests
on:
push:
branches: [ "master", "cernbox" ]
branches: [ "master" ]
pull_request:
branches: [ "master", "cernbox" ]
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v3.1.0

- name: Set up Python 3.11
uses: actions/setup-python@v2
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CodeQL

on:
push:
branches: [ "master", "cernbox" ]
branches: [ "master" ]
pull_request:
branches: [ "master" ]
schedule:
Expand All @@ -24,18 +24,18 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v3.1.0

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
queries: +security-and-quality

- name: Autobuild
uses: github/codeql-action/autobuild@v2
uses: github/codeql-action/autobuild@v3

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{ matrix.language }}"

0 comments on commit 8a72523

Please sign in to comment.