From 9134f3011e694fbed2b75ca2554631f5bf9312f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wojciech=20Smoli=C5=84ski?= Date: Sat, 29 Jun 2024 04:12:08 +0200 Subject: [PATCH] Fix bashtest.yml - remove not supported runner image - https://github.com/actions/runner-images/?tab=readme-ov-file#available-images - update GitHub actions versions to get rid of annotations on each run https://github.com/ChrisTitusTech/mybash/actions/runs/9720575331 - at the bottom --- .github/workflows/bashtest.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/bashtest.yml b/.github/workflows/bashtest.yml index f82286a..642da04 100644 --- a/.github/workflows/bashtest.yml +++ b/.github/workflows/bashtest.yml @@ -7,15 +7,15 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - os: [ubuntu-latest, ubuntu-20.04, ubuntu-18.04] + os: [ubuntu-latest, ubuntu-20.04] steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Cache ShellCheck id: cache-shellcheck - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: /usr/local/bin/shellcheck key: ${{ runner.os }}-shellcheck