forked from sebsauvage/Shaarli
-
Notifications
You must be signed in to change notification settings - Fork 297
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release v0.14.0
- Loading branch information
Showing
53 changed files
with
3,697 additions
and
5,250 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,13 @@ | ||
module.exports = { | ||
extends: 'stylelint-config-standard', | ||
plugins: [ | ||
"stylelint-scss" | ||
], | ||
extends: 'stylelint-config-standard-scss', | ||
rules: { | ||
"indentation": [2], | ||
"number-leading-zero": null, | ||
// Replace CSS @ with SASS ones | ||
"at-rule-no-unknown": null, | ||
"scss/at-rule-no-unknown": true, | ||
// not compatible with SASS apparently | ||
"color-function-notation": null, | ||
"media-feature-range-notation": 'prefix', | ||
"shorthand-property-no-redundant-values": null, | ||
"no-descending-specificity": null | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#!/bin/execlineb -P | ||
php-fpm8 -F | ||
php-fpm82 -F |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: trivy security scans (release) | ||
on: | ||
schedule: | ||
- cron: '0 17 * * *' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
trivy-repo: | ||
runs-on: ubuntu-latest | ||
name: trivy scan (release composer/yarn dependencies) | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Run trivy scanner on repository | ||
run: make test_trivy_repo TRIVY_TARGET_BRANCH=origin/release TRIVY_EXIT_CODE=1 | ||
trivy-docker: | ||
runs-on: ubuntu-latest | ||
name: trivy scan (release docker image) | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Run trivy scanner on release docker image | ||
run: make test_trivy_docker TRIVY_TARGET_DOCKER_IMAGE=ghcr.io/shaarli/shaarli:release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.