diff options
author | Tim Schumacher <timschumi@gmx.de> | 2022-01-07 12:31:11 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-01-07 12:35:15 +0100 |
commit | aa35b6e3c35b704ccb0152e4fb86f18e1d4552a2 (patch) | |
tree | 337aaa82f9600c800bba42a6d97aee573fee34da /.github/workflows/libjs-test262.yml | |
parent | 55a77388373b7803600a5ad6fdc3f76d47b08391 (diff) | |
download | serenity-aa35b6e3c35b704ccb0152e4fb86f18e1d4552a2.zip |
CI: Don't let APT ask for confirmation on package installation
Diffstat (limited to '.github/workflows/libjs-test262.yml')
-rw-r--r-- | .github/workflows/libjs-test262.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/libjs-test262.yml b/.github/workflows/libjs-test262.yml index 4da23789de..1e7990aa27 100644 --- a/.github/workflows/libjs-test262.yml +++ b/.github/workflows/libjs-test262.yml @@ -49,7 +49,7 @@ jobs: run: | sudo add-apt-repository ppa:ubuntu-toolchain-r/test sudo apt-get update - sudo apt-get install ninja-build unzip gcc-11 g++-11 + sudo apt-get install -y ninja-build unzip gcc-11 g++-11 - name: Setup Python uses: actions/setup-python@v2 |