Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/cpp_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
ffmpeg-version-for-tests: ['4.4.2', '5.1.2', '6.1.1', '7.0.1']
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v6
- name: Setup conda env
uses: conda-incubator/setup-miniconda@v3
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
python-version: ['3.12']
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v6
- name: Setup conda env
uses: conda-incubator/setup-miniconda@v2
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
miniconda-version: "latest"
Expand All @@ -50,9 +50,9 @@ jobs:
python-version: ['3.12']
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v6
- name: Setup conda env
uses: conda-incubator/setup-miniconda@v2
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
miniconda-version: "latest"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux_cuda_aarch64_wheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
needs: build
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Remove src/ folder
run: bash packaging/remove_src.sh
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linux_cuda_wheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
echo python_version_without_periods=${python_version_without_periods} >> $GITHUB_ENV

- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Remove src/ folder
run: bash packaging/remove_src.sh
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
echo python_version_without_periods=${python_version_without_periods} >> $GITHUB_ENV

- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Remove src/ folder
run: bash packaging/remove_src.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux_wheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
needs: build
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Remove src/ folder
run: bash packaging/remove_src.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos_wheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
needs: build
steps:
- name: Check out torchcodec repo
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Remove src/ folder
run: bash packaging/remove_src.sh
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reference_resources.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
name: meta-pytorch_torchcodec__${{ matrix.python-version }}_cpu_x86_64
path: pytorch/torchcodec/dist/
- name: Setup conda env
uses: conda-incubator/setup-miniconda@v2
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
miniconda-version: "latest"
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
echo Installing $wheel_path
python -m pip install $wheel_path -vvv
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Run generation reference resources
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows_wheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
needs: build
steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Remove src/ folder
run: bash packaging/remove_src.sh
Expand Down
Loading