diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index f8a6706103..3453197426 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -9,10 +9,10 @@ on: jobs: # see https://github.com/koalaman/shellcheck shellcheck: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install linters on ubuntu run: | @@ -22,14 +22,14 @@ jobs: - name: run Shellcheck run: | shellcheck --version - find . -name "*.sh" | xargs shellcheck -e SC1004,SC2010,SC2035,SC2086 + find . -name "*.sh" | xargs shellcheck -e SC1004,SC2010,SC2035,SC2086,SC2268 # see https://pylint.org/ pylint: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install linters on ubuntu run: | @@ -46,10 +46,10 @@ jobs: # see https://github.com/danmar/cppcheck cppcheck: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install linters on ubuntu run: | @@ -72,10 +72,10 @@ jobs: # see https://www.viva64.com/en/pvs-studio/ pvs: environment: pvs - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install linters on ubuntu env: