diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 845c8678f..3e4aea0db 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v4 - name: Get pathPrefix - uses: actions/github-script@v6 + uses: actions/github-script@v7 id: get_path_prefix with: script: | diff --git a/.github/workflows/stage.yml b/.github/workflows/stage.yml index 06551e322..99388b337 100644 --- a/.github/workflows/stage.yml +++ b/.github/workflows/stage.yml @@ -24,7 +24,7 @@ uses: actions/checkout@v4 - name: Get pathPrefix - uses: actions/github-script@v6 + uses: actions/github-script@v7 id: get_path_prefix with: script: | diff --git a/.github/workflows/test-pull-request.yml b/.github/workflows/test-pull-request.yml index 4b5d2f382..b755be3b1 100644 --- a/.github/workflows/test-pull-request.yml +++ b/.github/workflows/test-pull-request.yml @@ -60,7 +60,7 @@ # Use full version number to avoid cases when a next # released version is buggy # About slim image: https://github.com/github/super-linter#slim-image - uses: super-linter/super-linter/slim@v7.0.0 + uses: super-linter/super-linter/slim@v7.2.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} DEFAULT_BRANCH: main diff --git a/package.json b/package.json index 64c3b1a93..eb2326e80 100644 --- a/package.json +++ b/package.json @@ -27,8 +27,7 @@ "build": "NODE_OPTIONS='--max-old-space-size=8192' gatsby build", "serve": "NODE_OPTIONS='--max-old-space-size=8192' gatsby serve", "clean": "gatsby clean", - "test": "remark src/pages --quiet --frail", - "lint": "docker run --rm -e RUN_LOCAL=true --env-file .github/super-linter.env -v \"$PWD\":/tmp/lint github/super-linter:slim-v5" + "test": "remark src/pages --quiet --frail" }, "packageManager": "yarn@3.2.4" } diff --git a/src/pages/coding-standards/technical-guidelines.md b/src/pages/coding-standards/technical-guidelines.md index 96660ca6a..ee601df16 100644 --- a/src/pages/coding-standards/technical-guidelines.md +++ b/src/pages/coding-standards/technical-guidelines.md @@ -316,7 +316,7 @@ class Edit extends Action 2.13. Static methods SHOULD NOT be used. -2.14. [Temporal coupling](http://blog.ploeh.dk/2011/05/24/DesignSmellTemporalCoupling/) MUST be avoided +2.14. Temporal coupling MUST be avoided Example #1: