From 9db22d2893ea12406e5fca19e9ba507742c216d6 Mon Sep 17 00:00:00 2001 From: Trevor Brown Date: Mon, 24 Mar 2025 09:08:17 -0400 Subject: [PATCH] fix: correct runs-on and version values --- .github/workflows/workflow.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 90ed70d..f5ddc63 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -24,22 +24,22 @@ jobs: version: 1.18.3-otp-27 - os: ubuntu-latest version: 1.13.4-otp-22 - runs-on: ${{ matrix.os }} + runs-on: ${{ matrix.os.os }} steps: - name: Install system packages on Ubuntu - if: ${{ runner.os.os == 'Linux' }} + if: ${{ runner.os == 'Linux' }} run: sudo apt-get install curl erlang - name: Install system packages on macOS - if: ${{ runner.os.os == 'macOS' }} + if: ${{ runner.os == 'macOS' }} run: brew install coreutils erlang - name: Test plugin uses: asdf-vm/actions/plugin-test@v2 with: command: elixir --version - version: ${{ runner.os.version }} + version: ${{ matrix.os.version }} lint: runs-on: ubuntu-latest