Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "actions: upgrade changed-files version" #13740

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 6 additions & 9 deletions .github/workflows/linter-conan-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,11 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
fetch-depth: 2
- name: Get changed files
uses: tj-actions/changed-files@v32
uses: tj-actions/changed-files@v20
id: changed_files
with:
base_sha: ${{ github.event.pull_request.base.sha }}
files: |
linter/**
- name: Get Conan v1 version
Expand Down Expand Up @@ -85,12 +84,11 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
fetch-depth: 2
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v32
uses: tj-actions/changed-files@v20
with:
base_sha: ${{ github.event.pull_request.base.sha }}
files: |
recipes/*/*/conanfile.py
- name: Get Conan v1 version
Expand Down Expand Up @@ -121,12 +119,11 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
fetch-depth: 2
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v32
uses: tj-actions/changed-files@v20
with:
base_sha: ${{ github.event.pull_request.base.sha }}
files: |
recipes/*/*/test_*/conanfile.py
- name: Get Conan v1 version
Expand Down
13 changes: 5 additions & 8 deletions .github/workflows/linter-yaml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,12 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
fetch-depth: 2

- name: Get changed files
uses: tj-actions/changed-files@v32
uses: tj-actions/changed-files@v20
id: changed_files
with:
base_sha: ${{ github.event.pull_request.base.sha }}
files: |
linter/**

Expand Down Expand Up @@ -52,7 +51,7 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
fetch-depth: 2

- uses: actions/setup-python@v4
with:
Expand All @@ -65,9 +64,8 @@ jobs:
- name: Get changed files (config)
id: changed_files_config
if: always()
uses: tj-actions/changed-files@v32
uses: tj-actions/changed-files@v20
with:
base_sha: ${{ github.event.pull_request.base.sha }}
files: |
${{ env.CONFIG_FILES_PATH }}

Expand All @@ -82,9 +80,8 @@ jobs:
- name: Get changed files (conandata)
id: changed_files_conandata
if: always()
uses: tj-actions/changed-files@v32
uses: tj-actions/changed-files@v20
with:
base_sha: ${{ github.event.pull_request.base.sha }}
files: |
${{ env.CONANDATA_FILES_PATH }}

Expand Down