Skip to content

Commit 9bbd1ab

Browse files
committed
Merge remote-tracking branch 'nm-fork/main' into upstream-v0.8.5
2 parents 278cc0f + 5cc9ebf commit 9bbd1ab

File tree

2 files changed

+27
-3
lines changed

2 files changed

+27
-3
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: snyk security scan
2+
run-name: SNYK security scan for '${{ github.ref }}'
3+
4+
on: [push]
5+
6+
env:
7+
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
8+
9+
jobs:
10+
11+
SNYK:
12+
runs-on: ubuntu-latest
13+
timeout-minutes: 60
14+
15+
steps:
16+
- uses: actions/checkout@master
17+
18+
- uses: snyk/actions/setup@master
19+
20+
- name: Generate code vulnerability report
21+
id: run_snyk
22+
run: |
23+
snyk code test --project-name="${{ github.repository }}" --report ${{ github.workspace }}
24+
continue-on-error: true

Dockerfile.rocm.ubi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ gpgkey=https://repo.radeon.com/rocm/rocm.gpg.key" > /etc/yum.repos.d/amdgpu.repo
4545
RUN --mount=type=cache,target=/root/.cache/uv \
4646
export version="$(awk -F. '{print $1"."$2}' <<< $ROCM_VERSION)" && \
4747
uv pip install --pre \
48-
--index-url "https://download.pytorch.org/whl/nightly/rocm${version}" \
49-
torch==2.7.0.dev20250308+rocm${version}\
50-
torchvision==0.22.0.dev20250308+rocm${version} && \
48+
--index-url "https://download.pytorch.org/whl/rocm${version}" \
49+
torch==2.7.0+rocm${version}\
50+
torchvision==0.22.0+rocm${version} && \
5151
# Install libdrm-amdgpu to avoid errors when retrieving device information (amdgpu.ids: No such file or directory)
5252
microdnf install -y --nodocs libdrm-amdgpu && \
5353
microdnf clean all

0 commit comments

Comments
 (0)