7 Commits

Author SHA1 Message Date
semantic-release-bot
ee979b3973 chore(release): 1.0.13 [skip ci]
## [1.0.13](https://github.com/ivuorinen/base-configs-stylelint/compare/v1.0.12...v1.0.13) (2026-03-13)
2026-03-13 19:02:39 +00:00
dependabot[bot]
def51dfbdc chore(deps): bump flatted from 3.3.4 to 3.4.1 (#125)
Bumps [flatted](https://github.com/WebReflection/flatted) from 3.3.4 to 3.4.1.
- [Commits](https://github.com/WebReflection/flatted/compare/v3.3.4...v3.4.1)

---
updated-dependencies:
- dependency-name: flatted
  dependency-version: 3.4.1
  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-13 20:59:47 +02:00
renovate[bot]
f02afd4162 chore(actions): update ivuorinen/actions action to v2026.03.11 (#124) 2026-03-13 20:04:57 +02:00
renovate[bot]
d56e10421e chore(deps)!: update dependency stylelint-order (7.0.1 → 8.0.0) (#123)
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-13 08:45:58 +02:00
semantic-release-bot
28a4a69689 chore(release): 1.0.12 [skip ci]
## [1.0.12](https://github.com/ivuorinen/base-configs-stylelint/compare/v1.0.11...v1.0.12) (2026-03-12)
2026-03-12 09:10:46 +00:00
dependabot[bot]
2620ee2ff1 chore(deps): bump tar from 7.5.10 to 7.5.11 (#122)
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:08:08 +02:00
25f226a3b3 ci: migrate CodeQL to ivuorinen/actions/codeql-analysis (#121)
* ci: migrate codeql to composable workflow

* 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 18:32:37 +02:00
8 changed files with 37 additions and 45 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@0d579ffd059c29b07949a3cce3983f0780820c98 # v4.32.6
with: with:
languages: ${{ matrix.language }} language: ${{ matrix.language }}
queries: security-and-quality queries: security-and-quality
- name: Autobuild
uses: github/codeql-action/autobuild@0d579ffd059c29b07949a3cce3983f0780820c98 # v4.32.6
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@0d579ffd059c29b07949a3cce3983f0780820c98 # v4.32.6
with:
category: '/language:${{matrix.language}}'

View File

@@ -27,4 +27,4 @@ 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

View File

@@ -24,7 +24,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

@@ -19,4 +19,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

@@ -3,6 +3,10 @@
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.13](https://github.com/ivuorinen/base-configs-stylelint/compare/v1.0.12...v1.0.13) (2026-03-13)
## [1.0.12](https://github.com/ivuorinen/base-configs-stylelint/compare/v1.0.11...v1.0.12) (2026-03-12)
## [1.0.11](https://github.com/ivuorinen/base-configs-stylelint/compare/v1.0.10...v1.0.11) (2026-03-07) ## [1.0.11](https://github.com/ivuorinen/base-configs-stylelint/compare/v1.0.10...v1.0.11) (2026-03-07)
## [1.0.10](https://github.com/ivuorinen/base-configs-stylelint/compare/v1.0.9...v1.0.10) (2026-03-05) ## [1.0.10](https://github.com/ivuorinen/base-configs-stylelint/compare/v1.0.9...v1.0.10) (2026-03-05)

View File

@@ -1,6 +1,6 @@
{ {
"name": "@ivuorinen/stylelint-config", "name": "@ivuorinen/stylelint-config",
"version": "1.0.11", "version": "1.0.13",
"type": "module", "type": "module",
"description": "ivuorinen's shareable configuration for stylelint.", "description": "ivuorinen's shareable configuration for stylelint.",
"author": { "author": {
@@ -58,7 +58,7 @@
"stylelint": "^17.0.0", "stylelint": "^17.0.0",
"stylelint-config-recommended-scss": "^17.0.0", "stylelint-config-recommended-scss": "^17.0.0",
"stylelint-config-standard": "^40.0.0", "stylelint-config-standard": "^40.0.0",
"stylelint-order": "^7.0.0", "stylelint-order": "^8.0.0",
"stylelint-scss": "^7.0.0" "stylelint-scss": "^7.0.0"
}, },
"gitHead": "23d15f15743fb59c1dbe658615ef2ed51c54d230", "gitHead": "23d15f15743fb59c1dbe658615ef2ed51c54d230",

View File

@@ -203,7 +203,7 @@ __metadata:
stylelint: "npm:^17.0.0" stylelint: "npm:^17.0.0"
stylelint-config-recommended-scss: "npm:^17.0.0" stylelint-config-recommended-scss: "npm:^17.0.0"
stylelint-config-standard: "npm:^40.0.0" stylelint-config-standard: "npm:^40.0.0"
stylelint-order: "npm:^7.0.0" stylelint-order: "npm:^8.0.0"
stylelint-scss: "npm:^7.0.0" stylelint-scss: "npm:^7.0.0"
languageName: unknown languageName: unknown
linkType: soft linkType: soft
@@ -1735,9 +1735,9 @@ __metadata:
linkType: hard linkType: hard
"flatted@npm:^3.3.3": "flatted@npm:^3.3.3":
version: 3.3.4 version: 3.4.1
resolution: "flatted@npm:3.3.4" resolution: "flatted@npm:3.4.1"
checksum: 10c0/d1f33426e9714063a65a90940acdb2897eceb810230a58e496d90334dcecfa81a90135bbc660df6827939865d57cb4a2afab14dcd3d505e16a8484fd73bf9642 checksum: 10c0/3987a7f1e39bc7215cece001354313b462cdb4fb2dde0df4f7acd9e5016fbae56ee6fb3f0870b2150145033be8bda4f01af6f87a00946049651131bbfca7dfa6
languageName: node languageName: node
linkType: hard linkType: hard
@@ -3568,12 +3568,12 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"postcss-sorting@npm:^9.1.0": "postcss-sorting@npm:^10.0.0":
version: 9.1.0 version: 10.0.0
resolution: "postcss-sorting@npm:9.1.0" resolution: "postcss-sorting@npm:10.0.0"
peerDependencies: peerDependencies:
postcss: ^8.4.20 postcss: ^8.4.20
checksum: 10c0/1faea84bf00d85929228d297587798fa9c384a02966a28a942777b2de553a8186087cfdcd0aca3dd40e4b2793aee050792d807458db8cf4880867c98c7bf22fd checksum: 10c0/2e53560ccfaefb6ccfaa44cd258735f815de7a06ff6c79e6fb0fe789422f10242266044902c716e2eec9680879d7e0872b4ecd5d89e9bd8670f6d9f6c3ce5adc
languageName: node languageName: node
linkType: hard linkType: hard
@@ -3584,7 +3584,7 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"postcss@npm:^8.5.6": "postcss@npm:^8.5.6, postcss@npm:^8.5.8":
version: 8.5.8 version: 8.5.8
resolution: "postcss@npm:8.5.8" resolution: "postcss@npm:8.5.8"
dependencies: dependencies:
@@ -4252,15 +4252,15 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"stylelint-order@npm:^7.0.0": "stylelint-order@npm:^8.0.0":
version: 7.0.1 version: 8.0.0
resolution: "stylelint-order@npm:7.0.1" resolution: "stylelint-order@npm:8.0.0"
dependencies: dependencies:
postcss: "npm:^8.5.6" postcss: "npm:^8.5.8"
postcss-sorting: "npm:^9.1.0" postcss-sorting: "npm:^10.0.0"
peerDependencies: peerDependencies:
stylelint: ^16.18.0 || ^17.0.0 stylelint: ^16.18.0 || ^17.0.0
checksum: 10c0/dfe3ab8f18725c9c2fead65f2940a6590208591ca267da6d25ee191c6e5f1df04813a6f6a76791bfe5f6fda33fbf6d81369c17c71831bfbd6802dfed26559845 checksum: 10c0/b46e9c1bcb47bb05399b2518007aa8a200a6b5ed1b024ac2a6200e207d85e9398ed758edd104db54b95d3408bfce5a5eec8d48111de16a4c1fe45f323e6886fa
languageName: node languageName: node
linkType: hard linkType: hard
@@ -4413,15 +4413,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