This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-crypto.git
The following commit(s) were added to refs/heads/master by this push: new 8731712 Use GitHub cache for CodeQL 8731712 is described below commit 8731712e2bdff76cb1cb913f8153e3cb2ec15d5f Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Sep 22 08:43:01 2022 -0400 Use GitHub cache for CodeQL --- .github/workflows/codeql-analysis.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 525206f..407c054 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -50,6 +50,12 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v3.0.2 + - uses: actions/cache@v3.0.8 + with: + path: ~/.m2/repository + key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} + restore-keys: | + ${{ runner.os }}-maven- # Override Java default # Java 11 complains about illegal access; drop this override when sorted