Skip to content

Commit

Permalink
Bump CI Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
AFCMS authored and staticssleever668 committed Oct 28, 2024
1 parent c6e54f6 commit ebb4b1b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- 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 }}"
17 changes: 10 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,15 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
meson_args:
- '-Druntime-dependency-checks=false'
- '-Druntime-dependency-checks=false -Dbuildtype=plain'
- '-Druntime-dependency-checks=false -Dbuildtype=release'
include:
- name: debug
meson_args: '-Druntime-dependency-checks=false'
- name: plain
meson_args: '-Druntime-dependency-checks=false -Dbuildtype=plain'
- name: release
meson_args: '-Druntime-dependency-checks=false -Dbuildtype=release'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: libratbag/libratbag/.github/actions/pkginstall@master
with:
apt: $UBUNTU_DEPS
Expand All @@ -39,10 +42,10 @@ jobs:
- name: list any files left after uninstall
run: (test -d _instdir && tree _instdir) || exit 0
# Capture all the meson logs, even if we failed
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: ${{ always() }} # even if we fail
with:
name: meson test logs
name: 'meson test logs ${{ matrix.name }}'
path: |
builddir/meson-logs/testlog*.txt
builddir/meson-logs/meson-log.txt

0 comments on commit ebb4b1b

Please sign in to comment.