Skip to content

Commit

Permalink
Merge pull request #2166 from DFE-Digital/fix-apt-update
Browse files Browse the repository at this point in the history
Don't install Microsoft packages
  • Loading branch information
thomasleese authored Apr 24, 2024
2 parents a7fa416 + b06af6b commit 56a4d3f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/actions/prepare-app-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@ inputs:
runs:
using: composite
steps:
- name: Update apt
run: sudo rm /etc/apt/sources.list.d/microsoft-prod.list && sudo apt-get update
shell: bash

- name: Install libvips
run: sudo apt update && sudo apt install -y libvips
run: sudo apt install -y libvips
shell: bash

- name: Set up Ruby
Expand Down

0 comments on commit 56a4d3f

Please sign in to comment.