Skip to content

Commit

Permalink
Merge pull request #9 from insightsengineering/idr-tasks-578
Browse files Browse the repository at this point in the history
Update actions/checkout
  • Loading branch information
walkowif committed Jun 21, 2023
2 parents a919f27 + 761dc3a commit dc1ed1b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand All @@ -119,4 +119,4 @@ jobs:
configuration-data: ${{ matrix.reports.configuration-data }}
output: ${{ matrix.reports.output }}
lang-models: ${{ matrix.reports.lang-models }}
only-changed-files: ${{ matrix.reports.changed-files-only }}
only-changed-files: ${{ matrix.reports.changed-files-only }}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
# 0 fetch-depth is needed if you set `only-changed-files` to true
# and if you are configuring this check to run on push events
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
# output - specify one of output formats
output: "parsable"
# only-changed-files - only run the check for files that were changed
# NOTE: You must set fetch-depth: 0 in the actions/checkout@v2 step
# NOTE: You must set fetch-depth: 0 in the actions/checkout@v3 step
# for push events while this paramater is set to true
only-changed-files: true

Expand Down

0 comments on commit dc1ed1b

Please sign in to comment.