Skip to content

Commit a34466a

Browse files
committed
ci: Fix smoke failures due to pre not available in local actions
Related: #564 Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
1 parent 1532531 commit a34466a

3 files changed

Lines changed: 10 additions & 5 deletions

File tree

.github/actions/run-smoke/action.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@ inputs:
88
runs:
99
using: "composite"
1010
steps:
11-
- name: "Harden runner"
12-
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.10.1
13-
with:
14-
egress-policy: audit
15-
1611
- name: "Install packages"
1712
shell: bash
1813
run: |

.github/workflows/smoke-py312.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,11 @@ jobs:
106106
# untrusted code from PRs.
107107
permissions: {}
108108
steps:
109+
- name: "Harden runner"
110+
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.10.1
111+
with:
112+
egress-policy: audit
113+
109114
- name: "Checkout code"
110115
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
111116
with:

.github/workflows/smoke.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,11 @@ jobs:
106106
# untrusted code from PRs.
107107
permissions: {}
108108
steps:
109+
- name: "Harden runner"
110+
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.10.1
111+
with:
112+
egress-policy: audit
113+
109114
- name: "Checkout code"
110115
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
111116
with:

0 commit comments

Comments
 (0)