From ed724871d6256dfbd894b8e1aacff46541d283d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danny=20M=C3=B6sch?= Date: Thu, 28 Nov 2024 22:48:15 +0100 Subject: [PATCH] Stop installing packages that are already there --- .github/workflows/deploying.yml | 7 ++++--- .github/workflows/testing.yml | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploying.yml b/.github/workflows/deploying.yml index 8242400..e9a4c62 100644 --- a/.github/workflows/deploying.yml +++ b/.github/workflows/deploying.yml @@ -18,11 +18,12 @@ jobs: with: ruby-version: '2.7' bundler-cache: true + - name: Setup Go + uses: actions/setup-go@v5 + with: + go-version: '1.23.x' - name: Installing packages run: | - brew update - brew install carthage - brew install go || brew link --overwrite go gem install bundler - uses: actions/cache@v3 id: carthage-cache diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 5bc56f2..15bcc64 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -11,11 +11,12 @@ jobs: with: ruby-version: '2.7' bundler-cache: true + - name: Setup Go + uses: actions/setup-go@v5 + with: + go-version: '1.23.x' - name: Installing packages run: | - brew update - brew install carthage - brew install go || brew link --overwrite go gem install bundler - uses: actions/cache@v3 id: carthage-cache