Skip to content

Commit

Permalink
chore: Specify exact version of GitHub Actions to use
Browse files Browse the repository at this point in the history
  • Loading branch information
mthmulders committed Jan 18, 2024
1 parent 277afdd commit 3a28da4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v4.1.1

- name: Set up JDK
uses: actions/[email protected]
Expand All @@ -22,7 +22,7 @@ jobs:
check-latest: true

- name: Set up cache for ~./m2/repository
uses: actions/cache@v3
uses: actions/cache@v3.3.3
with:
path: ~/.m2/repository
key: pit-stryker-dashboard-reporter-${{ hashFiles('**/pom.xml') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mutation-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v4
uses: actions/checkout@v4.1.1
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.1
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0

- name: Set up cache for ~./m2/repository
uses: actions/cache@v3
uses: actions/cache@v3.3.3
with:
path: ~/.m2/repository
key: pit-stryker-dashboard-reporter-${{ hashFiles('**/pom.xml') }}
Expand Down

0 comments on commit 3a28da4

Please sign in to comment.