Skip to content

Commit 42da859

Browse files
github-actions[bot]github-actionsfabasoad
authored
Update license copyright year to 2025 (#51)
## Changelog - Update license copyright year to 2025 --- Powered by [FantasticFiasco/action-update-license-year](https://github.com/FantasticFiasco/action-update-license-year) --------- Co-authored-by: github-actions <github-actions@github.com> Co-authored-by: fabasoad <fabasoad@gmail.com>
1 parent b9020e8 commit 42da859

3 files changed

Lines changed: 28 additions & 21 deletions

File tree

.github/workflows/functional-tests.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
11
---
22
name: Functional Tests
33

4-
on:
4+
on: # yamllint disable-line rule:truthy
5+
push:
6+
branches:
7+
- main
58
pull_request:
69
paths:
710
- .github/workflows/functional-tests.yml
811
- src/**
912
- tests/**
1013
- .bpkg.lock
14+
schedule:
15+
# Every Friday at 09:00 JST
16+
- cron: "0 0 * * 5"
17+
workflow_dispatch: {}
1118

1219
defaults:
1320
run:

.pre-commit-config.yaml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
default_install_hook_types: ["pre-commit", "pre-push"]
3-
default_stages: ["commit", "push"]
3+
default_stages: ["pre-commit", "pre-push"]
44
minimum_pre_commit_version: 2.18.0
55
repos:
66
- repo: local
@@ -11,81 +11,81 @@ repos:
1111
language: system
1212
pass_filenames: false
1313
verbose: true
14-
stages: ["push"]
14+
stages: ["pre-push"]
1515
- id: test
1616
name: Functional tests
1717
entry: make test
1818
language: system
1919
pass_filenames: false
2020
verbose: true
21-
stages: ["push"]
21+
stages: ["pre-push"]
2222
- id: prettier
2323
name: Prettier
2424
entry: prettier --write --ignore-unknown
2525
language: node
2626
types: [text]
2727
args: []
2828
# https://github.com/prettier/prettier/releases
29-
additional_dependencies: ["prettier@3.3.3"]
30-
stages: ["commit"]
29+
additional_dependencies: ["prettier@3.4.2"]
30+
stages: ["pre-commit"]
3131
# Security
3232
- repo: https://github.com/Yelp/detect-secrets
3333
rev: v1.5.0
3434
hooks:
3535
- id: detect-secrets
3636
- repo: https://github.com/gitleaks/gitleaks
37-
rev: v8.18.4
37+
rev: v8.22.1
3838
hooks:
3939
- id: gitleaks
4040
- repo: https://github.com/fabasoad/pre-commit-grype
41-
rev: v0.6.0
41+
rev: v0.6.1
4242
hooks:
4343
- id: grype-dir
4444
args:
4545
- --grype-args=--by-cve --fail-on=low
4646
- --hook-args=--log-level debug
47-
stages: ["push"]
47+
stages: ["pre-push"]
4848
# Markdown
4949
- repo: https://github.com/igorshubovych/markdownlint-cli
50-
rev: v0.41.0
50+
rev: v0.43.0
5151
hooks:
5252
- id: markdownlint-fix
53-
stages: ["commit"]
53+
stages: ["pre-commit"]
5454
# Shell
5555
- repo: https://github.com/openstack/bashate
5656
rev: 2.1.1
5757
hooks:
5858
- id: bashate
5959
args: ["-i", "E003,E006"]
60-
stages: ["commit"]
60+
stages: ["pre-commit"]
6161
# Yaml
6262
- repo: https://github.com/adrienverge/yamllint
6363
rev: v1.35.1
6464
hooks:
6565
- id: yamllint
66-
stages: ["push"]
66+
stages: ["pre-push"]
6767
# GitHub Actions
6868
- repo: https://github.com/rhysd/actionlint
69-
rev: v1.7.1
69+
rev: v1.7.6
7070
hooks:
7171
- id: actionlint
7272
args: ["-pyflakes="]
73-
stages: ["commit"]
73+
stages: ["pre-commit"]
7474
# Other
7575
- repo: https://github.com/pre-commit/pre-commit-hooks
76-
rev: v4.6.0
76+
rev: v5.0.0
7777
hooks:
7878
- id: check-executables-have-shebangs
79-
stages: ["commit"]
79+
stages: ["pre-commit"]
8080
- id: check-shebang-scripts-are-executable
81-
stages: ["commit"]
81+
stages: ["pre-commit"]
8282
- id: check-merge-conflict
8383
- id: check-json
84-
stages: ["push"]
84+
stages: ["pre-push"]
8585
- id: detect-private-key
8686
- id: end-of-file-fixer
8787
- id: mixed-line-ending
8888
args: ["--fix=lf"]
8989
- id: no-commit-to-branch
90-
stages: ["commit"]
90+
stages: ["pre-commit"]
9191
- id: trailing-whitespace

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021-2024 Yevhen Fabizhevskyi
3+
Copyright (c) 2021-2025 Yevhen Fabizhevskyi
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)