Skip to content

Commit b99d588

Browse files
committed
Fix scorecard CICD
1 parent e4dcd93 commit b99d588

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/scorecard.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,14 @@ permissions: read-all
1313
jobs:
1414
analysis:
1515
name: Scorecard analysis
16-
runs-on: blacksmith-4vcpu-ubuntu-2204
16+
runs-on: ubuntu-latest
1717
permissions:
1818
# Needed for Code scanning upload
1919
security-events: write
2020
# Needed for GitHub OIDC token if publish_results is true
2121
id-token: write
2222

2323
steps:
24-
- name: Harden Runner
25-
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
26-
with:
27-
egress-policy: audit
28-
2924
- name: 'Checkout code'
3025
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3126
with:

test/test1983.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@ if (typeof exports === 'object') {
66
const test = '1983'; // insert test file number
77

88
describe('Test 1983 - multiple statements', function () {
9-
109
before(function () {
1110
alasql('create database test' + test);
1211
alasql('use test' + test);
13-
alasql('CREATE TABLE a (anything string);')
12+
alasql('CREATE TABLE a (anything string);');
1413
});
1514

1615
after(function () {

0 commit comments

Comments
 (0)