From dd3af0456c1e08e6caadcfdf8fbfa4f164b03568 Mon Sep 17 00:00:00 2001 From: Mauro Carvalho Chehab Date: Sat, 18 Feb 2023 14:04:51 +0100 Subject: [PATCH] ci.yml: fix workflow to build rasdaemon Signed-off-by: Mauro Carvalho Chehab --- .github/workflows/ci.yml | 2 +- .github/workflows/on_tag.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9486f58..b27d8a0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: - name: prepare run: | sudo apt-get update - sudo apt-get install -y build-essential sqlite3 libtraceevent-dev + sudo apt-get install -y build-essential libsqlite3-dev sqlite3 libtraceevent-dev libtraceevent1 - name: build run: | autoreconf -vfi diff --git a/.github/workflows/on_tag.yml b/.github/workflows/on_tag.yml index da42b19..e408010 100644 --- a/.github/workflows/on_tag.yml +++ b/.github/workflows/on_tag.yml @@ -21,7 +21,7 @@ jobs: echo "version=$(cat version)" >> $GITHUB_ENV - name: Create Release id: create_release - uses: actions/create-release@v1 + uses: actions/create-release@latest env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: -- 2.49.0