Skip to content

Commit f4cdff5

Browse files
Fix Python actions hashes for node.js support
1 parent 89b132d commit f4cdff5

1 file changed

Lines changed: 22 additions & 22 deletions

File tree

.github/workflows/pr.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
run:
2626
working-directory: ./etc/scripts
2727
steps:
28-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
28+
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 #v5.1.0
2929
- name: Set up Python ${{ env.X_PYTHON_MIN_VERSION }}
30-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
30+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v7
3131
with:
3232
python-version: ${{ env.X_PYTHON_MIN_VERSION }}
3333
cache: "pip"
@@ -79,15 +79,15 @@ jobs:
7979
run:
8080
working-directory: ./sdk
8181
steps:
82-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
82+
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 #v5.1.0
8383
- name: Verify Matrix Version matches Global Version
8484
run: |
8585
if [ "${{ matrix.python-version }}" != "${{ env.X_PYTHON_MIN_VERSION }}" ] && [ "${{ matrix.python-version }}" != "${{ env.X_PYTHON_MAX_VERSION }}" ]; then
8686
echo "Error: Matrix version ${{ matrix.python-version }} does not match global version."
8787
exit 1
8888
fi
8989
- name: Set up Python ${{ matrix.python-version }}
90-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
90+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v7
9191
with:
9292
python-version: ${{ matrix.python-version }}
9393
cache: "pip"
@@ -119,9 +119,9 @@ jobs:
119119
run:
120120
working-directory: ./sdk
121121
steps:
122-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
122+
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 #v5.1.0
123123
- name: Set up Python ${{ env.X_PYTHON_MIN_VERSION }}
124-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
124+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v7
125125
with:
126126
python-version: ${{ env.X_PYTHON_MIN_VERSION }}
127127
cache: "pip"
@@ -144,9 +144,9 @@ jobs:
144144
run:
145145
working-directory: ./sdk
146146
steps:
147-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
147+
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 #v5.1.0
148148
- name: Set up Python ${{ env.X_PYTHON_MIN_VERSION }}
149-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
149+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v7
150150
with:
151151
python-version: ${{ env.X_PYTHON_MIN_VERSION }}
152152
cache: "pip"
@@ -172,9 +172,9 @@ jobs:
172172
run:
173173
working-directory: ./sdk
174174
steps:
175-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
175+
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 #v5.1.0
176176
- name: Set up Python ${{ env.X_PYTHON_MAX_VERSION }}
177-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
177+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v7
178178
with:
179179
python-version: ${{ env.X_PYTHON_MAX_VERSION }}
180180
cache: "pip"
@@ -194,9 +194,9 @@ jobs:
194194
run:
195195
working-directory: ./sdk
196196
steps:
197-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
197+
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 #v5.1.0
198198
- name: Set up Python ${{ env.X_PYTHON_MIN_VERSION }}
199-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
199+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v7
200200
with:
201201
python-version: ${{ env.X_PYTHON_MIN_VERSION }}
202202
- name: Install dependencies
@@ -211,7 +211,7 @@ jobs:
211211
# This job checks that the copyright year in the header of all files is up to date
212212
runs-on: ubuntu-latest
213213
steps:
214-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
214+
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 #v5.1.0
215215
with:
216216
fetch-depth: 0 # Ensure full history is available
217217
- name: Run copyright check
@@ -230,9 +230,9 @@ jobs:
230230
working-directory: ./compliance_tool
231231

232232
steps:
233-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
233+
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 #v5.1.0
234234
- name: Set up Python ${{ matrix.python-version }}
235-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
235+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v7
236236
with:
237237
python-version: ${{ matrix.python-version }}
238238
cache: "pip"
@@ -259,9 +259,9 @@ jobs:
259259
run:
260260
working-directory: ./compliance_tool
261261
steps:
262-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
262+
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 #v5.1.0
263263
- name: Set up Python ${{ env.X_PYTHON_MIN_VERSION }}
264-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
264+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v7
265265
with:
266266
python-version: ${{ env.X_PYTHON_MIN_VERSION }}
267267
cache: "pip"
@@ -287,9 +287,9 @@ jobs:
287287
run:
288288
working-directory: ./compliance_tool
289289
steps:
290-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
290+
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 #v5.1.0
291291
- name: Set up Python ${{ env.X_PYTHON_MIN_VERSION }}
292-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
292+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v7
293293
with:
294294
python-version: ${{ env.X_PYTHON_MIN_VERSION }}
295295
- name: Install dependencies
@@ -309,9 +309,9 @@ jobs:
309309
run:
310310
working-directory: ./server
311311
steps:
312-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
312+
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 #v5.1.0
313313
- name: Set up Python ${{ env.X_PYTHON_MIN_VERSION }}
314-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
314+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v7
315315
with:
316316
python-version: ${{ env.X_PYTHON_MIN_VERSION }}
317317
cache: "pip"
@@ -339,7 +339,7 @@ jobs:
339339
run:
340340
working-directory: ./server/docker/${{ matrix.service }}
341341
steps:
342-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
342+
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 #v5.1.0
343343
- name: Build the Docker image
344344
run: |
345345
docker build -t basyx-python-${{ matrix.service }} -f Dockerfile ../../..

0 commit comments

Comments
 (0)