Skip to content

Commit 0625177

Browse files
committed
Align secret name with #16384
1 parent 0964ce8 commit 0625177

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

.github/workflows/sycl-containers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
file: ${{ matrix.file }}
7575
username: ${{ github.repository_owner }}
7676
password: ${{ secrets.GITHUB_TOKEN }}
77-
sycl_passwd: ${{ secrets.DOCKER_SUDO_PASSWORD }}
77+
sycl_ci_passwd: ${{ secrets.DOCKER_SUDO_PASSWORD }}
7878
tags: |
7979
ghcr.io/${{ github.repository }}/${{ matrix.file }}:${{ matrix.tag }}-${{ github.sha }}
8080
ghcr.io/${{ github.repository }}/${{ matrix.file }}:${{ matrix.tag }}

devops/actions/build_container/action.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ inputs:
2121
file:
2222
description: "Dockerfile"
2323
required: true
24-
sycl_passwd:
24+
sycl_ci_passwd:
2525
description: "Password to assign to sycl user within a container"
2626
required: true
2727

@@ -34,7 +34,6 @@ runs:
3434
registry: ghcr.io
3535
username: ${{ inputs.username }}
3636
password: ${{ inputs.password }}
37-
sycl_passwd: ${{ inputs.sycl_passwd }}
3837
- name: Build and Push Container
3938
uses: docker/[email protected]
4039
with:
@@ -45,4 +44,4 @@ runs:
4544
file: ${{ github.workspace }}/devops/containers/${{ inputs.file }}.Dockerfile
4645
secrets: |
4746
github_token=${{ github.token }}
48-
sycl_passwd=${{ inputs.sycl_passwd }}
47+
sycl_ci_passwd=${{ inputs.sycl_ci_passwd }}

devops/containers/ubuntu2204_base.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ COPY scripts/install_build_tools.sh /install.sh
99
RUN /install.sh
1010

1111
COPY scripts/create-sycl-user.sh /user-setup.sh
12-
RUN --mount=type=secret,id=sycl_passwd /user-setup.sh
12+
RUN --mount=type=secret,id=sycl_ci_passwd /user-setup.sh
1313

1414
COPY actions/cached_checkout /actions/cached_checkout
1515
COPY actions/cleanup /actions/cleanup

devops/containers/ubuntu2204_build.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ RUN apt update && apt install -yqq rocm-dev && \
3131
rm -rf /var/lib/apt/lists/*
3232

3333
COPY scripts/create-sycl-user.sh /user-setup.sh
34-
RUN --mount=type=secret,id=sycl_passwd /user-setup.sh
34+
RUN --mount=type=secret,id=sycl_ci_passwd /user-setup.sh
3535

3636
COPY scripts/docker_entrypoint.sh /docker_entrypoint.sh
3737

devops/containers/ubuntu2404_base.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ COPY scripts/install_build_tools.sh /install.sh
99
RUN /install.sh
1010

1111
COPY scripts/create-sycl-user.sh /user-setup.sh
12-
RUN --mount=type=secret,id=sycl_passwd /user-setup.sh
12+
RUN --mount=type=secret,id=sycl_ci_passwd /user-setup.sh
1313

1414
COPY actions/cached_checkout /actions/cached_checkout
1515
COPY actions/cleanup /actions/cleanup

0 commit comments

Comments
 (0)