Skip to content

Commit 520762d

Browse files
authored
Merge pull request uxlfoundation#974 from hvdijk/repin-dependencies
Re-pin workflow actions and container dependencies.
2 parents 842fc0e + 76b8119 commit 520762d

13 files changed

Lines changed: 17 additions & 17 deletions

File tree

.github/actions/do_build_dpcpp/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ runs:
2727
target: ${{ inputs.target }}
2828

2929
- name: Install Ninja
30-
uses: llvm/actions/install-ninja@main
30+
uses: llvm/actions/install-ninja@a1ea791b03c8e61f53a0e66f2f73db283aa0f01e # main branch
3131

3232
- name: clone dpc++
3333
if: contains(inputs.download_dpcpp_artefact, inputs.target) != true

.github/actions/do_build_llvm/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ runs:
3131
steps:
3232
- name: Setup Windows
3333
if: startsWith(runner.os, 'Windows')
34-
uses: llvm/actions/setup-windows@main
34+
uses: llvm/actions/setup-windows@a1ea791b03c8e61f53a0e66f2f73db283aa0f01e # main branch
3535
with:
3636
arch: amd64
3737
- name: Cache llvm

.github/actions/do_build_run_sycl_e2e/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ runs:
2323
target: ${{ inputs.target }}
2424

2525
- name: Install Ninja
26-
uses: llvm/actions/install-ninja@main
26+
uses: llvm/actions/install-ninja@a1ea791b03c8e61f53a0e66f2f73db283aa0f01e # main branch
2727

2828
- name: download icd artifact
2929
if: inputs.sycl_device == 'opencl'

.github/actions/do_build_sycl_cts/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ runs:
2525

2626
- name: Install Ninja
2727
if: contains(inputs.download_sycl_cts_artefact, inputs.target) != true
28-
uses: llvm/actions/install-ninja@main
28+
uses: llvm/actions/install-ninja@a1ea791b03c8e61f53a0e66f2f73db283aa0f01e # main branch
2929

3030
- name: download icd artifact
3131
if: inputs.sycl_device == 'opencl' && contains(inputs.download_sycl_cts_artefact, inputs.target) != true

.github/actions/run_sycl_cts/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ runs:
2424
target: ${{ inputs.target }}
2525

2626
- name: Install Ninja
27-
uses: llvm/actions/install-ninja@main
27+
uses: llvm/actions/install-ninja@a1ea791b03c8e61f53a0e66f2f73db283aa0f01e # main branch
2828

2929
- name: download ock artifact
3030
if: inputs.sycl_device == 'opencl'

.github/dockerfiles/Dockerfile_22.04-aarch64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:22.04
1+
FROM ubuntu:22.04@sha256:4e0171b9275e12d375863f2b3ae9ce00a4c53ddda176bd55868df97ac6f21a6e
22

33
RUN apt-get update
44
RUN apt-get -y install sudo

.github/dockerfiles/Dockerfile_22.04-x86-64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:22.04
1+
FROM ubuntu:22.04@sha256:4e0171b9275e12d375863f2b3ae9ce00a4c53ddda176bd55868df97ac6f21a6e
22

33
RUN apt-get update
44
RUN apt-get install -y wget git build-essential

.github/dockerfiles/Dockerfile_24.04-x86-64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:24.04
1+
FROM ubuntu:24.04@sha256:9cbed754112939e914291337b5e554b07ad7c392491dba6daf25eef1332a22e8
22

33
RUN apt-get update
44
RUN apt-get install -y wget git build-essential

.github/workflows/pr_tests_cache.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ jobs:
140140
runs-on: windows-2025
141141
steps:
142142
- name: Setup Windows llvm base
143-
uses: llvm/actions/setup-windows@main
143+
uses: llvm/actions/setup-windows@a1ea791b03c8e61f53a0e66f2f73db283aa0f01e # main branch
144144
with:
145145
arch: amd64
146146

@@ -168,7 +168,7 @@ jobs:
168168
runs-on: windows-2025
169169
steps:
170170
- name: Setup Windows llvm base
171-
uses: llvm/actions/setup-windows@main
171+
uses: llvm/actions/setup-windows@a1ea791b03c8e61f53a0e66f2f73db283aa0f01e # main branch
172172
with:
173173
arch: amd64
174174

.github/workflows/publish_docker_images.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Checkout
2727
uses: actions/checkout@v5
2828
- name: Login to GitHub Container Registry
29-
uses: docker/login-action@v3
29+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
3030
with:
3131
registry: ghcr.io
3232
username: ${{ github.actor }}
@@ -49,7 +49,7 @@ jobs:
4949
- name: Checkout
5050
uses: actions/checkout@v5
5151
- name: Login to GitHub Container Registry
52-
uses: docker/login-action@v3
52+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3
5353
with:
5454
registry: ghcr.io
5555
username: ${{ github.actor }}

0 commit comments

Comments
 (0)