11 Commits

Author SHA1 Message Date
renovate[bot]
8249de068a chore(deps): update pre-commit hook renovatebot/pre-commit-hooks (43.4.2 → 43.73.1)
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-03-14 08:02:15 +00:00
semantic-release-bot
1c2d6bccfb chore(release): 1.0.16 [skip ci]
## [1.0.16](https://github.com/ivuorinen/base-configs-browserslist/compare/v1.0.15...v1.0.16) (2026-03-14)
2026-03-14 08:01:41 +00:00
dependabot[bot]
a69d6dfceb chore(deps): bump undici from 6.23.0 to 6.24.0 (#168) 2026-03-14 09:59:09 +02:00
renovate[bot]
e0deb29ce5 chore(actions): update ivuorinen/actions action to v2026.03.11 (#167) 2026-03-13 19:41:47 +02:00
semantic-release-bot
06b22ac404 chore(release): 1.0.15 [skip ci]
## [1.0.15](https://github.com/ivuorinen/base-configs-browserslist/compare/v1.0.14...v1.0.15) (2026-03-12)
2026-03-12 09:08:11 +00:00
dependabot[bot]
79baa500df chore(deps): bump tar from 7.5.10 to 7.5.11 (#166)
Bumps [tar](https://github.com/isaacs/node-tar) from 7.5.10 to 7.5.11.
- [Release notes](https://github.com/isaacs/node-tar/releases)
- [Changelog](https://github.com/isaacs/node-tar/blob/main/CHANGELOG.md)
- [Commits](https://github.com/isaacs/node-tar/compare/v7.5.10...v7.5.11)

---
updated-dependencies:
- dependency-name: tar
  dependency-version: 7.5.11
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-12 11:05:38 +02:00
semantic-release-bot
33f11bb897 chore(release): 1.0.14 [skip ci]
## [1.0.14](https://github.com/ivuorinen/base-configs-browserslist/compare/v1.0.13...v1.0.14) (2026-03-09)
2026-03-09 19:22:31 +00:00
renovate[bot]
a94c316cb2 chore(deps): update pre-commit hook bridgecrewio/checkov (3.2.507 → 3.2.508) (#165) 2026-03-09 21:19:57 +02:00
23844bf23e ci: migrate CodeQL to ivuorinen/actions/codeql-analysis (#162)
* ci: migrate codeql to composable workflow

* fix: correct codeql workflow permissions, cron, and action ref

- Set root-level permissions to {}
- Add job-level permissions (actions, contents, packages, security-events)
- Pin action ref to commit hash with version comment
- Fix mangled cron schedule
- Clean up workflow structure

* fix: correct codeql workflow language, queries, permissions, and action ref

- Use 'javascript' instead of 'javascript-typescript' for CodeQL language
- Add queries: security-and-quality parameter
- Set root-level permissions to {}
- Add job-level permissions (actions, contents, packages, security-events)
- Pin action ref to commit hash with version comment
- Fix mangled cron schedule
2026-03-07 17:52:02 +02:00
semantic-release-bot
073fde30a2 chore(release): 1.0.13 [skip ci]
## [1.0.13](https://github.com/ivuorinen/base-configs-browserslist/compare/v1.0.12...v1.0.13) (2026-03-07)
2026-03-07 15:47:00 +00:00
renovate[bot]
8c591ffe28 chore(deps): update github/codeql-action action (v4.32.5 → v4.32.6) (#163)
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-03-07 15:44:32 +00:00
9 changed files with 30 additions and 34 deletions

View File

@@ -1,14 +1,14 @@
--- ---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: 'CodeQL' name: "CodeQL"
on: on:
push: push:
branches: ['main'] branches: ["main"]
pull_request: pull_request:
branches: ['main'] branches: ["main"]
schedule: schedule:
- cron: '30 1 * * 0' # Run at 1:30 AM UTC every Sunday - cron: "30 1 * * 0"
merge_group: merge_group:
permissions: {} permissions: {}
@@ -20,27 +20,15 @@ jobs:
permissions: permissions:
actions: read actions: read
contents: read contents: read
packages: read
security-events: write security-events: write
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
language: ['javascript'] # Add languages used in your actions language: ["actions", "javascript"]
steps: steps:
- name: Checkout repository - name: CodeQL Analysis
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 uses: ivuorinen/actions/codeql-analysis@7f6a23b59316795c4b3cb3b3b28dd53e53655a33 # v2026.03.11
- name: Initialize CodeQL
uses: github/codeql-action/init@c793b717bc78562f491db7b0e93a3a178b099162 # v4.32.5
with: with:
languages: ${{ matrix.language }} language: ${{ matrix.language }}
queries: security-and-quality queries: security-and-quality
- name: Autobuild
uses: github/codeql-action/autobuild@c793b717bc78562f491db7b0e93a3a178b099162 # v4.32.5
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@c793b717bc78562f491db7b0e93a3a178b099162 # v4.32.5
with:
category: '/language:${{matrix.language}}'

View File

@@ -35,4 +35,4 @@ jobs:
- name: Run PR Lint - name: Run PR Lint
# https://github.com/ivuorinen/actions # https://github.com/ivuorinen/actions
uses: ivuorinen/actions/pr-lint@6e8f2aae9d0846d901d9eba15b8e94a2900573dc # v2026.03.02 uses: ivuorinen/actions/pr-lint@7f6a23b59316795c4b3cb3b3b28dd53e53655a33 # v2026.03.11

View File

@@ -26,7 +26,7 @@ jobs:
steps: steps:
- name: Run PR Lint - name: Run PR Lint
# https://github.com/ivuorinen/actions # https://github.com/ivuorinen/actions
uses: ivuorinen/actions/pr-lint@6e8f2aae9d0846d901d9eba15b8e94a2900573dc # v2026.03.02 uses: ivuorinen/actions/pr-lint@7f6a23b59316795c4b3cb3b3b28dd53e53655a33 # v2026.03.11
publish: publish:
name: Publish name: Publish

View File

@@ -20,4 +20,4 @@ jobs:
issues: write issues: write
pull-requests: write pull-requests: write
steps: steps:
- uses: ivuorinen/actions/stale@6e8f2aae9d0846d901d9eba15b8e94a2900573dc # v2026.03.02 - uses: ivuorinen/actions/stale@7f6a23b59316795c4b3cb3b3b28dd53e53655a33 # v2026.03.11

View File

@@ -38,4 +38,4 @@ jobs:
with: with:
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
- name: ⤵️ Sync Latest Labels Definitions - name: ⤵️ Sync Latest Labels Definitions
uses: ivuorinen/actions/sync-labels@6e8f2aae9d0846d901d9eba15b8e94a2900573dc # v2026.03.02 uses: ivuorinen/actions/sync-labels@7f6a23b59316795c4b3cb3b3b28dd53e53655a33 # v2026.03.11

View File

@@ -51,12 +51,12 @@ repos:
args: ['-shellcheck='] args: ['-shellcheck=']
- repo: https://github.com/renovatebot/pre-commit-hooks - repo: https://github.com/renovatebot/pre-commit-hooks
rev: 43.4.2 rev: 43.73.1
hooks: hooks:
- id: renovate-config-validator - id: renovate-config-validator
- repo: https://github.com/bridgecrewio/checkov.git - repo: https://github.com/bridgecrewio/checkov.git
rev: '3.2.507' rev: '3.2.508'
hooks: hooks:
- id: checkov - id: checkov
args: args:

View File

@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file. See All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines. [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.0.16](https://github.com/ivuorinen/base-configs-browserslist/compare/v1.0.15...v1.0.16) (2026-03-14)
## [1.0.15](https://github.com/ivuorinen/base-configs-browserslist/compare/v1.0.14...v1.0.15) (2026-03-12)
## [1.0.14](https://github.com/ivuorinen/base-configs-browserslist/compare/v1.0.13...v1.0.14) (2026-03-09)
## [1.0.13](https://github.com/ivuorinen/base-configs-browserslist/compare/v1.0.12...v1.0.13) (2026-03-07)
## [1.0.12](https://github.com/ivuorinen/base-configs-browserslist/compare/v1.0.11...v1.0.12) (2026-03-07) ## [1.0.12](https://github.com/ivuorinen/base-configs-browserslist/compare/v1.0.11...v1.0.12) (2026-03-07)
## [1.0.11](https://github.com/ivuorinen/base-configs-browserslist/compare/v1.0.10...v1.0.11) (2026-03-06) ## [1.0.11](https://github.com/ivuorinen/base-configs-browserslist/compare/v1.0.10...v1.0.11) (2026-03-06)

View File

@@ -1,6 +1,6 @@
{ {
"name": "@ivuorinen/browserslist-config", "name": "@ivuorinen/browserslist-config",
"version": "1.0.12", "version": "1.0.16",
"description": "ivuorinen's shareable configuration for Browserslist.", "description": "ivuorinen's shareable configuration for Browserslist.",
"type": "module", "type": "module",
"author": { "author": {

View File

@@ -3730,15 +3730,15 @@ __metadata:
linkType: hard linkType: hard
"tar@npm:^7.4.3, tar@npm:^7.5.1, tar@npm:^7.5.4, tar@npm:^7.5.9": "tar@npm:^7.4.3, tar@npm:^7.5.1, tar@npm:^7.5.4, tar@npm:^7.5.9":
version: 7.5.10 version: 7.5.11
resolution: "tar@npm:7.5.10" resolution: "tar@npm:7.5.11"
dependencies: dependencies:
"@isaacs/fs-minipass": "npm:^4.0.0" "@isaacs/fs-minipass": "npm:^4.0.0"
chownr: "npm:^3.0.0" chownr: "npm:^3.0.0"
minipass: "npm:^7.1.2" minipass: "npm:^7.1.2"
minizlib: "npm:^3.1.0" minizlib: "npm:^3.1.0"
yallist: "npm:^5.0.0" yallist: "npm:^5.0.0"
checksum: 10c0/ed905e4b33886377df6e9206e5d1bd34458c21666e27943f946799416f86348c938590d573d6a69312cb29c583b122647a64ec92782f2b7e24e68d985dd72531 checksum: 10c0/b6bb420550ef50ef23356018155e956cd83282c97b6128d8d5cfe5740c57582d806a244b2ef0bf686a74ce526babe8b8b9061527623e935e850008d86d838929
languageName: node languageName: node
linkType: hard linkType: hard
@@ -3903,9 +3903,9 @@ __metadata:
linkType: hard linkType: hard
"undici@npm:^6.23.0": "undici@npm:^6.23.0":
version: 6.23.0 version: 6.24.0
resolution: "undici@npm:6.23.0" resolution: "undici@npm:6.24.0"
checksum: 10c0/d846b3fdfd05aa6081ba1eab5db6bbc21b283042c7a43722b86d1ee2bf749d7c990ceac0c809f9a07ffd88b1b0f4c0f548a8362c035088cb1997d63abdda499c checksum: 10c0/a97d7f1214b34c5b2802558d06cbed97ff96a27ab6548972ba9d07c13951c69e2e9f2f01581f71c86b74755d2bf92e64091cf8f2c6eba4184f10c6d583e60388
languageName: node languageName: node
linkType: hard linkType: hard