Skip to content

Commit

Permalink
update github ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mateoconlechuga committed Jul 14, 2024
1 parent 12e394e commit d0bc1f5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
runs-on: ${{matrix.runs-on}}-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
submodules: recursive
fetch-depth: 1

- name: Build project
Expand All @@ -37,7 +37,7 @@ jobs:
continue-on-error: true

- name: Upload artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: ${{matrix.os-name}}-convimg
path: bin/convimg${{matrix.exe}}
Expand Down Expand Up @@ -92,21 +92,21 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
submodules: recursive
fetch-depth: 1

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: cpp
config-file: ./.github/codeql/codeql-config.yml

- 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 d0bc1f5

Please sign in to comment.