Skip to content

Commit

Permalink
Bump actions/cache from 3.2.4 to 3.2.5
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 3.2.4 to 3.2.5.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@627f0f4...6998d13)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and marcwrobel committed Feb 14, 2023
1 parent 13abd9d commit 872e9e1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ jobs:
java-version: 11

- name: Cache SonarQube packages
uses: 'actions/cache@627f0f41f6904a5b1efbaed9f96d9eb58e92e920' # v3.2.4
uses: 'actions/cache@6998d139ddd3e68c71e9e398d8e40b71a2f39812' # v3.2.5
with:
path: '~/.sonar/cache'
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar

- name: Cache Maven packages
uses: 'actions/cache@627f0f41f6904a5b1efbaed9f96d9eb58e92e920' # v3.2.4
uses: 'actions/cache@6998d139ddd3e68c71e9e398d8e40b71a2f39812' # v3.2.5
with:
path: '~/.m2/repository'
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand All @@ -63,16 +63,16 @@ jobs:
fetch-depth: 2

- name: Initialize CodeQL
uses: 'github/codeql-action/init@8775e868027fa230df8586bdf502bbd9b618a477' # v2.2.3
uses: 'github/codeql-action/init@8775e868027fa230df8586bdf502bbd9b618a477' # v2.2.4
with:
languages: 'java'
queries: 'security-and-quality'

- name: Autobuild
uses: 'github/codeql-action/autobuild@8775e868027fa230df8586bdf502bbd9b618a477' # v2.2.3
uses: 'github/codeql-action/autobuild@8775e868027fa230df8586bdf502bbd9b618a477' # v2.2.4

- name: Perform CodeQL Analysis
uses: 'github/codeql-action/analyze@8775e868027fa230df8586bdf502bbd9b618a477' # v2.2.3
uses: 'github/codeql-action/analyze@8775e868027fa230df8586bdf502bbd9b618a477' # v2.2.4

# See https://www.jetbrains.com/help/qodana/github.html#Usage
codana:
Expand All @@ -92,6 +92,6 @@ jobs:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}

- name: Upload result
uses: 'github/codeql-action/upload-sarif@8775e868027fa230df8586bdf502bbd9b618a477' # v2.2.3
uses: 'github/codeql-action/upload-sarif@8775e868027fa230df8586bdf502bbd9b618a477' # v2.2.4
with:
sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### Internal

- Comment GitHub actions with version (#287).
- Bump actions/cache from 3.2.2 to 3.2.4 (#284, #294).
- Bump actions/cache from 3.2.2 to 3.2.5 (#284, #294, #301).
- Bump actions/setup-java from 3.9.0 to 3.10.0 (#299).
- Bump github/codeql-action from 2.1.37 to 2.2.3 (#286, #290, #291, #295, #300)
- Bump github/codeql-action from 2.1.37 to 2.2.4 (#286, #290, #291, #295, #300, #302)
- Bump strata-basics from 2.12.17 to 2.12.20 (#285, #288, #289)
- Set up Qodana analysis (#296)

Expand Down

0 comments on commit 872e9e1

Please sign in to comment.