Skip to content

Commit 43e1f13

Browse files
authored
chore: update release audit workflow & license headers (#679)
1 parent bcdfedc commit 43e1f13

File tree

2 files changed

+29
-13
lines changed

2 files changed

+29
-13
lines changed

.github/workflows/release-audit.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,22 @@ jobs:
3434
runs-on: ubuntu-latest
3535
steps:
3636
# Checkout project
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v6
3838

39-
# Check license headers (v1.2.0)
40-
- uses: erisu/apache-rat-action@3127a8c18f3bb10e91c60e835144085b31c5c463
39+
# Check license headers (v2.0.0)
40+
- uses: erisu/apache-rat-action@46fb01ce7d8f76bdcd7ab10e7af46e1ea95ca01c
4141

4242
# Setup environment with node
43-
- uses: actions/setup-node@v4
43+
- uses: actions/setup-node@v6
4444
with:
45-
node-version: 20
45+
node-version: 24
4646

4747
# Install node packages
4848
- name: npm install packages
49-
run: npm i
49+
run: npm ci
5050

51-
# Check node package licenses (v2.0.0)
52-
- uses: erisu/license-checker-action@1c222d0c2f5898a4c40b8bd6fd6888650bd6f68a
51+
# Check node package licenses (v2.0.1)
52+
- uses: erisu/license-checker-action@99cffa11264fe545fd0baa6c13bca5a00ae608f2
5353
with:
5454
license-config: 'licence_checker.yml'
5555
include-asf-category-a: true

.ratignore

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
1-
.git
2-
.ratignore
3-
(.*).txt
4-
coverage
5-
node_modules
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
18+
.git/
19+
doc/*.txt
20+
coverage/
21+
node_modules/

0 commit comments

Comments
 (0)