From a57b83ed64cd80e6c0e1191c06dcbb7fd2ae48a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20F=C3=B6hring?= Date: Sat, 17 Feb 2024 16:56:58 +0100 Subject: [PATCH] Update GitHub actions --- .github/workflows/code-scan-sarif.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/code-scan-sarif.yml b/.github/workflows/code-scan-sarif.yml index bb69a6cfa..f7ffb4549 100644 --- a/.github/workflows/code-scan-sarif.yml +++ b/.github/workflows/code-scan-sarif.yml @@ -35,17 +35,12 @@ jobs: security-events: write # for github/codeql-action/upload-sarif to upload SARIF results actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status runs-on: ubuntu-20.04 - strategy: - fail-fast: false - matrix: - otp: [version] - elixir: [version] steps: - uses: actions/checkout@v3 - uses: erlef/setup-beam@v1 with: - otp-version: ${{matrix.otp}} - elixir-version: ${{matrix.elixir}} + otp-version: 26.2 + elixir-version: 1.16.1 - name: get dependencies run: mix deps.get - name: compile dependencies