From 9360b30d09e2f0146b17b74d0536df568af0a976 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20L=C3=B3pez?= Date: Wed, 22 Feb 2023 16:17:29 -0300 Subject: [PATCH] ci: remove `mstksg/get-package` This action has not been updated since 2019, and is currently causing some deprecation warnings to show up. This replaces it with a few run steps for each OS. --- .github/workflows/ci.yml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 25da4762f..3f22b972e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,18 +17,17 @@ jobs: os: - ubuntu-20.04 - macos-latest - include: - - os: ubuntu-20.04 - apt-get: autoconf automake libtool - - os: macos-latest - brew: automake steps: - - name: Get Packages - uses: mstksg/get-package@v1 - with: - brew: ${{ matrix.brew }} - apt-get: ${{ matrix.apt-get }} + - name: Get Packages (macOS) + if: runner.os == 'macOS' + run: brew install automake + + - name: Get Packages (Linux) + if: runner.os == 'Linux' + run: | + sudo apt-get -q update + sudo apt-get -q install autoconf automake libtool - name: Checkout uses: actions/checkout@v3