From 38938e009142fd0c9588cd1033b817d78efa8a47 Mon Sep 17 00:00:00 2001 From: Daiki Ueno Date: Wed, 4 Oct 2023 04:34:33 +0900 Subject: [PATCH 1/2] .gitignore: Ignore test-init.sh generated in srcdir Autotools leaves the generated file behind if ./configure is run in the current source directory. Signed-off-by: Daiki Ueno --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index f63f6891..ec2d0daf 100644 --- a/.gitignore +++ b/.gitignore @@ -76,6 +76,8 @@ frob-* /build/trust/ /local +/common/test-init.sh + /doc/manual/html /doc/manual/p11-kit-decl-list.txt /doc/manual/p11-kit-decl.txt From 21f68e57c1b51a16877c91be850866e2070cbe41 Mon Sep 17 00:00:00 2001 From: Daiki Ueno Date: Wed, 4 Oct 2023 04:36:35 +0900 Subject: [PATCH 2/2] .github/workflows: Bump coveralls GitHub action requirement to v2 With the v1 version, we get the following warning: Warning: The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ Signed-off-by: Daiki Ueno --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 41235f9c..f118ae91 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -128,7 +128,7 @@ jobs: - name: Genereate coverage run: runuser -u user -- ninja coverage -C $GITHUB_WORKSPACE/$BUILDDIR - name: Coveralls GitHub Action - uses: coverallsapp/github-action@v1.1.2 + uses: coverallsapp/github-action@v2 with: path-to-lcov: ./builddir/meson-logs/coverage.info github-token: ${{ secrets.github_token }}