Skip to content

Commit

Permalink
chore(build): Use exact version number for actions/checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
mthmulders committed Sep 18, 2023
1 parent 066fe68 commit c3d56be
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.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@v3
uses: actions/checkout@v3.6.0
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/early-access.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: actions/download-artifact@v3

- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v3.6.0
with:
ref: ${{ steps.head.outputs.content }}

Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v3.6.0
with:
fetch-depth: 0

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@v3
uses: actions/checkout@v3.6.0
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v3.6.0

- name: Set up Java
uses: actions/[email protected]
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
path: artifacts/HEAD

- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v3.6.0
with:
ref: ${{ steps.head.outputs.content }}

Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
echo "NEXT_VERSION=$NEXT_VERSION" >> $GITHUB_OUTPUT
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v3.6.0
with:
fetch-depth: 0

Expand Down

0 comments on commit c3d56be

Please sign in to comment.