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

chore(ci): bump tj-actions/changed-files from 41 to 43 #751

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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/compiler_publish_docker_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v41
uses: tj-actions/changed-files@v43

- name: Login
id: login
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v41
uses: tj-actions/changed-files@v43

- name: Login
id: login
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,89 +48,89 @@ jobs:

- name: Get changed files in the concrete-compiler directory
id: compiler
uses: tj-actions/changed-files@0c6f2ac4885216b1830ecbcc3573209980c97716
uses: tj-actions/changed-files@490ac3999ea698495f8c32c2936450b9db118b2d
with:
files: ./compilers/concrete-compiler/**

- name: Get changed files for concrete-optimizer
id: optimizer
uses: tj-actions/changed-files@0c6f2ac4885216b1830ecbcc3573209980c97716
uses: tj-actions/changed-files@490ac3999ea698495f8c32c2936450b9db118b2d
with:
files: |
./compilers/concrete-optimizer/**
./.github/workflows/optimizer.yml

- name: Get changed files in the concrete-cpu directory
id: concrete-cpu
uses: tj-actions/changed-files@0c6f2ac4885216b1830ecbcc3573209980c97716
uses: tj-actions/changed-files@490ac3999ea698495f8c32c2936450b9db118b2d
with:
files: ./backends/concrete-cpu/implementation/**

- name: Get changed files in the concrete-python directory
id: concrete-python
uses: tj-actions/changed-files@0c6f2ac4885216b1830ecbcc3573209980c97716
uses: tj-actions/changed-files@490ac3999ea698495f8c32c2936450b9db118b2d
with:
files: ./frontends/concrete-python/**

- name: Check if compiler_build_and_test_cpu workflow has changed
id: concrete-compiler-cpu-workflow
uses: tj-actions/changed-files@0c6f2ac4885216b1830ecbcc3573209980c97716
uses: tj-actions/changed-files@490ac3999ea698495f8c32c2936450b9db118b2d
with:
files: ./.github/workflows/compiler_build_and_test_cpu.yml

- name: Check if compiler_build_and_test_gpu workflow has changed
id: concrete-compiler-gpu-workflow
uses: tj-actions/changed-files@0c6f2ac4885216b1830ecbcc3573209980c97716
uses: tj-actions/changed-files@490ac3999ea698495f8c32c2936450b9db118b2d
with:
files: ./.github/workflows/compiler_build_and_test_gpu.yml

- name: Check if compiler_format_and_linting.yml workflow has changed
id: concrete-compiler-format-and-linting-workflow
uses: tj-actions/changed-files@0c6f2ac4885216b1830ecbcc3573209980c97716
uses: tj-actions/changed-files@490ac3999ea698495f8c32c2936450b9db118b2d
with:
files: ./.github/workflows/compiler_format_and_linting.yml

- name: Check if compiler_macos_build_and_test workflow has changed
id: concrete-compiler-macos-workflow
uses: tj-actions/changed-files@0c6f2ac4885216b1830ecbcc3573209980c97716
uses: tj-actions/changed-files@490ac3999ea698495f8c32c2936450b9db118b2d
with:
files: ./.github/workflows/compiler_macos_build_and_test.yml

- name: Check if compiler_publish_docker_images workflow has changed
id: concrete-compiler-docker-images-workflow
uses: tj-actions/changed-files@0c6f2ac4885216b1830ecbcc3573209980c97716
uses: tj-actions/changed-files@490ac3999ea698495f8c32c2936450b9db118b2d
with:
files: |
./.github/workflows/compiler_publish_docker_images.yml
./docker/**

- name: Check if concrete_cpu_test workflow has changed
id: concrete-cpu-workflow
uses: tj-actions/changed-files@0c6f2ac4885216b1830ecbcc3573209980c97716
uses: tj-actions/changed-files@490ac3999ea698495f8c32c2936450b9db118b2d
with:
files: ./.github/workflows/concrete_cpu_test.yml

- name: Check if concrete_python_checks workflow has changed
id: concrete-python-workflow
uses: tj-actions/changed-files@0c6f2ac4885216b1830ecbcc3573209980c97716
uses: tj-actions/changed-files@490ac3999ea698495f8c32c2936450b9db118b2d
with:
files: ./.github/workflows/concrete_python_checks.yml

- name: Check if optimizer workflow has changed
id: concrete-optimizer-workflow
uses: tj-actions/changed-files@0c6f2ac4885216b1830ecbcc3573209980c97716
uses: tj-actions/changed-files@490ac3999ea698495f8c32c2936450b9db118b2d
with:
files: ./.github/workflows/optimizer.yml

- name: Get changed files in the concrete-cpu directory
id: concrete-cpu-api
uses: tj-actions/changed-files@0c6f2ac4885216b1830ecbcc3573209980c97716
uses: tj-actions/changed-files@490ac3999ea698495f8c32c2936450b9db118b2d
with:
files: ./backends/concrete-cpu/implementation/include/**

- name: Get changed files in the concrete-cuda directory
id: concrete-cuda-api
uses: tj-actions/changed-files@0c6f2ac4885216b1830ecbcc3573209980c97716
uses: tj-actions/changed-files@490ac3999ea698495f8c32c2936450b9db118b2d
with:
files: ./backends/concrete-cuda/implementation/include/**

Expand Down
Loading