8 Commits
v1.0.2 ... main

Author SHA1 Message Date
5c135f50dd ci: migrate CodeQL to ivuorinen/actions/codeql-analysis (#139)
* 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:59:43 +02:00
semantic-release-bot
4ad0e13299 chore(release): 1.0.5 [skip ci]
## [1.0.5](https://github.com/ivuorinen/base-configs-prettier/compare/v1.0.4...v1.0.5) (2026-03-07)
2026-03-07 04:41:32 +00:00
renovate[bot]
19195c0dc4 chore(deps): update github/codeql-action action (v4.32.5 → v4.32.6) (#137)
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 04:38:59 +00:00
semantic-release-bot
ad87b72885 chore(release): 1.0.4 [skip ci]
## [1.0.4](https://github.com/ivuorinen/base-configs-prettier/compare/v1.0.3...v1.0.4) (2026-03-07)
2026-03-07 01:47:43 +00:00
renovate[bot]
3be93c7361 chore(deps): update pre-commit hook bridgecrewio/checkov (3.2.506 → 3.2.507) (#138) 2026-03-07 03:45:08 +02:00
semantic-release-bot
452f404402 chore(release): 1.0.3 [skip ci]
## [1.0.3](https://github.com/ivuorinen/base-configs-prettier/compare/v1.0.2...v1.0.3) (2026-03-05)
2026-03-05 21:33:28 +00:00
renovate[bot]
c023daf7bf chore(deps): update actions/setup-node action (v6.2.0 → v6.3.0) (#134) 2026-03-05 23:30:58 +02:00
renovate[bot]
fad0dd21df chore(deps): update pre-commit hook renovatebot/pre-commit-hooks (43.4.2 → 43.56.0) (#135) 2026-03-05 23:30:30 +02:00
5 changed files with 22 additions and 28 deletions

View File

@@ -1,46 +1,34 @@
--- ---
# 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: {}
actions: read
contents: read
jobs: jobs:
analyze: analyze:
name: Analyze name: Analyze
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions: permissions:
actions: 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@97105fc2a909360678588cb50caf0be5144be486 # v2026.03.06
- 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

@@ -46,7 +46,7 @@ jobs:
fetch-depth: 0 fetch-depth: 0
- name: Setup Node.js Environment - name: Setup Node.js Environment
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with: with:
always-auth: true always-auth: true
node-version-file: ".nvmrc" node-version-file: ".nvmrc"

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.56.0
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.506' rev: '3.2.507'
hooks: hooks:
- id: checkov - id: checkov
args: args:

View File

@@ -3,6 +3,12 @@
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.5](https://github.com/ivuorinen/base-configs-prettier/compare/v1.0.4...v1.0.5) (2026-03-07)
## [1.0.4](https://github.com/ivuorinen/base-configs-prettier/compare/v1.0.3...v1.0.4) (2026-03-07)
## [1.0.3](https://github.com/ivuorinen/base-configs-prettier/compare/v1.0.2...v1.0.3) (2026-03-05)
## [1.0.2](https://github.com/ivuorinen/base-configs-prettier/compare/v1.0.1...v1.0.2) (2026-03-05) ## [1.0.2](https://github.com/ivuorinen/base-configs-prettier/compare/v1.0.1...v1.0.2) (2026-03-05)
## [1.0.1](https://github.com/ivuorinen/base-configs-prettier/compare/v1.0.0...v1.0.1) (2026-02-26) ## [1.0.1](https://github.com/ivuorinen/base-configs-prettier/compare/v1.0.0...v1.0.1) (2026-02-26)

View File

@@ -1,6 +1,6 @@
{ {
"name": "@ivuorinen/prettier-config", "name": "@ivuorinen/prettier-config",
"version": "1.0.2", "version": "1.0.5",
"type": "module", "type": "module",
"description": "ivuorinen's shareable configuration for Prettier.", "description": "ivuorinen's shareable configuration for Prettier.",
"author": { "author": {