diff options
author | leongross <[email protected]> | 2024-05-16 15:06:56 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-05-18 12:00:28 +0200 |
commit | ad0340d437fc7995e12a24b06bf82807c2cb661a (patch) | |
tree | fa189ec53db62f4a29cf535e2f03fd74d9fdf09c | |
parent | 30c4df16f27afa66e561f82914f0fee1acce7b9e (diff) | |
download | tinygo-ad0340d437fc7995e12a24b06bf82807c2cb661a.tar.gz tinygo-ad0340d437fc7995e12a24b06bf82807c2cb661a.zip |
fix fpm ci installion
Signed-off-by: leongross <[email protected]>
-rw-r--r-- | .github/workflows/linux.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 6decf0f7c..c1529aa8a 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -24,7 +24,7 @@ jobs: # tar: needed for actions/cache@v4 # git+openssh: needed for checkout (I think?) # ruby: needed to install fpm - run: apk add tar git openssh make g++ ruby + run: apk add tar git openssh make g++ ruby-dev - name: Work around CVE-2022-24765 # We're not on a multi-user machine, so this is safe. run: git config --global --add safe.directory "$GITHUB_WORKSPACE" |