mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 14:25:27 +00:00
CICD: Fix Coverity Scan Workflow.
Change the ordering of steps so that git is installed before the checkout is performed. Signed-off-by: Michael Keller <mikeller@042.ch>
This commit is contained in:
parent
be1b80ea8a
commit
22082bd60a
1 changed files with 6 additions and 6 deletions
12
.github/workflows/coverity-scan.yml
vendored
12
.github/workflows/coverity-scan.yml
vendored
|
@ -11,12 +11,6 @@ jobs:
|
|||
image: ubuntu:22.04
|
||||
|
||||
steps:
|
||||
- name: checkout sources
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
submodules: recursive
|
||||
|
||||
- name: add build dependencies
|
||||
run: |
|
||||
apt-get update
|
||||
|
@ -33,6 +27,12 @@ jobs:
|
|||
qtpositioning5-dev qtscript5-dev qttools5-dev qttools5-dev-tools \
|
||||
qtquickcontrols2-5-dev libbluetooth-dev libmtp-dev
|
||||
|
||||
- name: checkout sources
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
submodules: recursive
|
||||
|
||||
- name: configure environment
|
||||
run: |
|
||||
git config --global --add safe.directory $GITHUB_WORKSPACE
|
||||
|
|
Loading…
Add table
Reference in a new issue