Skip to content

Commit

Permalink
ci: use actions/checkout@v4 to avoid node versions warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
xrmx committed Feb 8, 2024
1 parent bb1a721 commit 0cea1d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/compile-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 0cea1d5

Please sign in to comment.