diff --git a/.github/workflows/compile-test.yml b/.github/workflows/compile-test.yml index d78edc9b9..d1ec99799 100644 --- a/.github/workflows/compile-test.yml +++ b/.github/workflows/compile-test.yml @@ -50,7 +50,7 @@ jobs: openjdk-11-jdk libgloox-dev gccgo \ cli-common-dev mono-devel mono-mcs uuid-dev \ curl check ${{ matrix.cc == 'clang' && 'clang' || '' }} - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Build kitchensink uWSGI binary with gcc or default with clang run: CC=${{ matrix.cc }} UWSGICONFIG_PHPPATH=${{ matrix.php-config }} /usr/bin/python3 uwsgiconfig.py --build ${{ matrix.cc == 'gcc' && 'travis' || '' }} - name: Build uWSGI binary diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 009d48438..ba0cbbb49 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,7 +27,7 @@ jobs: if: contains(fromJson('["3.6","3.7","3.8","3.9","3.10","3.11","3.12"]'), matrix.python-version) run: | sudo apt install --no-install-recommends -qqyf python${{ matrix.python-version }}-distutils \ - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Run unit tests if: matrix.test-suite == 'unittest' run: make tests @@ -61,7 +61,7 @@ jobs: sudo apt install --no-install-recommends -qqyf python3-dev \ libpcre3-dev libjansson-dev libcap2-dev ruby2.7-dev \ curl check - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Run unit tests run: make tests - name: Build uWSGI binary