Skip to content

Commit b039603

Browse files
Bump the github-actions group with 2 updates
Bumps the github-actions group with 2 updates: [nick-fields/retry](https://github.com/nick-fields/retry) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `nick-fields/retry` from 3.0.2 to 4.0.0 - [Release notes](https://github.com/nick-fields/retry/releases) - [Commits](nick-fields/retry@v3.0.2...v4.0.0) Updates `codecov/codecov-action` from 5 to 6 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v5...v6) --- updated-dependencies: - dependency-name: nick-fields/retry dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 69a95b2 commit b039603

8 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
run: bash .github/workflows/install_docs_deps.sh
9696

9797
- name: make linkcheck
98-
uses: nick-fields/retry@v3.0.2
98+
uses: nick-fields/retry@v4.0.0
9999
with:
100100
max_attempts: 3
101101
timeout_minutes: 10

.github/workflows/gpu-hvd-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jobs:
163163
docker exec -t pthd /bin/bash -c "${script}"
164164
165165
- name: Upload coverage to Codecov
166-
uses: codecov/codecov-action@v5
166+
uses: codecov/codecov-action@v6
167167
with:
168168
files: ${{ github.repository }}/coverage.xml
169169
flags: gpu-2

.github/workflows/gpu-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
125125
- name: Run GPU Unit Tests
126126
continue-on-error: false
127-
uses: nick-fields/retry@v3.0.2
127+
uses: nick-fields/retry@v4.0.0
128128
with:
129129
max_attempts: 5
130130
timeout_minutes: 45
@@ -133,7 +133,7 @@ jobs:
133133
new_command_on_retry: docker exec -e USE_LAST_FAILED=1 -t pthd /bin/bash -xec 'bash tests/run_gpu_tests.sh 4'
134134

135135
- name: Upload coverage to Codecov
136-
uses: codecov/codecov-action@v5
136+
uses: codecov/codecov-action@v6
137137
with:
138138
files: ${{ github.repository }}/coverage.xml
139139
flags: gpu-2

.github/workflows/hvd-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
target_dir: /tmp
8585

8686
- name: Run Tests
87-
uses: nick-fields/retry@v3.0.2
87+
uses: nick-fields/retry@v4.0.0
8888
with:
8989
max_attempts: 3
9090
timeout_minutes: 40
@@ -93,7 +93,7 @@ jobs:
9393
new_command_on_retry: USE_LAST_FAILED=1 USE_XDIST=0 bash tests/run_cpu_tests.sh
9494

9595
- name: Upload coverage to Codecov
96-
uses: codecov/codecov-action@v5
96+
uses: codecov/codecov-action@v6
9797
with:
9898
files: ./coverage.xml
9999
flags: hvd-cpu

.github/workflows/mps-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
SKIP_DISTRIB_TESTS=${{ matrix.skip-distrib-tests }} bash tests/run_cpu_tests.sh
136136
137137
- name: Upload coverage to Codecov
138-
uses: codecov/codecov-action@v5
138+
uses: codecov/codecov-action@v6
139139
with:
140140
files: ${{ github.repository }}/coverage.xml
141141
flags: mps

.github/workflows/pytorch-version-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
target_dir: /tmp
6161

6262
- name: Run Tests
63-
uses: nick-fields/retry@v3.0.2
63+
uses: nick-fields/retry@v4.0.0
6464
with:
6565
max_attempts: 5
6666
timeout_minutes: 15

.github/workflows/tpu-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
target_dir: /tmp
8787

8888
- name: Run Tests
89-
uses: nick-fields/retry@v3.0.2
89+
uses: nick-fields/retry@v4.0.0
9090
with:
9191
max_attempts: 5
9292
timeout_minutes: 25
@@ -101,7 +101,7 @@ jobs:
101101
XRT_WORKERS: "localservice:0;grpc://localhost:40934"
102102

103103
- name: Upload coverage to Codecov
104-
uses: codecov/codecov-action@v5
104+
uses: codecov/codecov-action@v6
105105
with:
106106
files: ./coverage.xml
107107
flags: tpu

.github/workflows/unit-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
cp -R /tmp/MNIST .
104104
105105
- name: Run Tests
106-
uses: nick-fields/retry@v3.0.2
106+
uses: nick-fields/retry@v4.0.0
107107
with:
108108
max_attempts: 5
109109
timeout_minutes: 15
@@ -112,7 +112,7 @@ jobs:
112112
new_command_on_retry: USE_LAST_FAILED=1 SKIP_DISTRIB_TESTS=${{ matrix.skip-distrib-tests }} bash tests/run_cpu_tests.sh
113113

114114
- name: Upload coverage to Codecov
115-
uses: codecov/codecov-action@v5
115+
uses: codecov/codecov-action@v6
116116
with:
117117
files: ./coverage.xml
118118
flags: cpu

0 commit comments

Comments
 (0)