Skip to content

Commit

Permalink
Merge pull request #18151 Fix codeql-analysis cache miss bug in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bot-gradle committed Sep 4, 2021
2 parents 758c7ad + a55b63c commit 57b8b09
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
# https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection

steps:
- name: Checkout repository
uses: actions/checkout@v2
# Checkout must run before the caching key is computed using the `hashFiles` method

- name: Cache Gradle Modules
uses: actions/cache@v2
with:
Expand All @@ -36,9 +40,6 @@ jobs:
# See: https://github.com/actions/virtual-environments/issues/1187#issuecomment-686735760
run: sudo ethtool -K eth0 tx off rx off

- name: Checkout repository
uses: actions/checkout@v2

# Install and setup JDK 11
- name: Setup JDK 11
uses: actions/setup-java@v1
Expand Down

0 comments on commit 57b8b09

Please sign in to comment.