Skip to content

Commit

Permalink
Run apt-get update before apt-get install libcurl4-openssl-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
CAMOBAP committed Jul 20, 2023
1 parent 4d31300 commit c248882
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 10 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/generic-rake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:

# workaround for https://github.com/actions/runner-images/issues/37
- if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install libcurl4-openssl-dev
run: |
sudo apt-get update
sudo apt-get install libcurl4-openssl-dev
- uses: ruby/setup-ruby@v1
with:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ghpkg-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ jobs:

# workaround for https://github.com/actions/runner-images/issues/37
- if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install libcurl4-openssl-dev
run: |
sudo apt-get update
sudo apt-get install libcurl4-openssl-dev
- uses: ruby/setup-ruby@v1
with:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/graphviz-rake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:

# workaround for https://github.com/actions/runner-images/issues/37
- if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install libcurl4-openssl-dev
run: |
sudo apt-get update
sudo apt-get install libcurl4-openssl-dev
- uses: ruby/setup-ruby@v1
with:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/inkscape-rake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:

# workaround for https://github.com/actions/runner-images/issues/37
- if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install libcurl4-openssl-dev
run: |
sudo apt-get update
sudo apt-get install libcurl4-openssl-dev
- uses: ruby/setup-ruby@v1
with:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/latexml-rake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:

# workaround for https://github.com/actions/runner-images/issues/37
- if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install libcurl4-openssl-dev
run: |
sudo apt-get update
sudo apt-get install libcurl4-openssl-dev
- uses: ruby/setup-ruby@v1
with:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/libreoffice-rake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ jobs:

# workaround for https://github.com/actions/runner-images/issues/37
- if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install libcurl4-openssl-dev
run: |
sudo apt-get update
sudo apt-get install libcurl4-openssl-dev
- uses: ruby/setup-ruby@v1
with:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/mn-processor-rake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ jobs:

# workaround for https://github.com/actions/runner-images/issues/37
- if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install libcurl4-openssl-dev
run: |
sudo apt-get update
sudo apt-get install libcurl4-openssl-dev
- uses: metanorma/ci/gh-rubygems-setup-action@main
with:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/plantuml-rake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:

# workaround for https://github.com/actions/runner-images/issues/37
- if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install libcurl4-openssl-dev
run: |
sudo apt-get update
sudo apt-get install libcurl4-openssl-dev
- uses: ruby/setup-ruby@v1
with:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/rubygems-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ jobs:

# workaround for https://github.com/actions/runner-images/issues/37
- if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install libcurl4-openssl-dev
run: |
sudo apt-get update
sudo apt-get install libcurl4-openssl-dev
- uses: ruby/setup-ruby@v1
with:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/xml2rfc-rake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:

# workaround for https://github.com/actions/runner-images/issues/37
- if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install libcurl4-openssl-dev
run: |
sudo apt-get update
sudo apt-get install libcurl4-openssl-dev
- uses: ruby/setup-ruby@v1
with:
Expand Down

0 comments on commit c248882

Please sign in to comment.