Skip to content

Bump re2 from 1.23.3 to 1.26.1 #925

Bump re2 from 1.23.3 to 1.26.1

Bump re2 from 1.23.3 to 1.26.1 #925

Workflow file for this run

name: CI Tests
on:
- pull_request
- push
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
jobs:
check-license:
name: Check License
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version: "^1.18.0"
- run: go install github.com/google/addlicense@latest
- run: env bash -c 'addlicense --check -c "Google LLC" -l MIT src/**/* bin/* examples/**/*'
test:
name: Run Tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- "22"
- "24"
- "26"
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7
with:
node-version: ${{ matrix.node-version }}
cache: npm
cache-dependency-path: package-lock.json
- run: npm i --global npm@^11.7.0
- run: npm ci
- run: npm test
- run: npm outdated
continue-on-error: true
check-package-lock:
name: Check Package Lock
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7
with:
node-version: "24"
cache: npm
cache-dependency-path: package-lock.json
- run: npm i --global npm@^11.7.0
- run: npm install --package-lock-only --ignore-scripts
- run: "git diff --exit-code -- package-lock.json || (echo 'Error: package-lock.json is changed during npm install! Please make sure to use npm >= 6.9.0 and commit package-lock.json.' && false)"