diff options
author | Joe Orton <jorton@apache.org> | 2024-03-05 14:40:30 +0100 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2024-03-05 14:40:30 +0100 |
commit | 74ed4a20dcc31710685db74aad567c1f5a803683 (patch) | |
tree | 5df2e08c119a2ccf862716338a31c7d600405736 /.github | |
parent | CI: add OpenSSL 3.2, test OpenSSL 3.x using Apache::Test (diff) | |
download | apache2-74ed4a20dcc31710685db74aad567c1f5a803683.tar.xz apache2-74ed4a20dcc31710685db74aad567c1f5a803683.zip |
CI: update actions to v4
Submitted by: Sagar <42873729+SagarCodeCtrl users.noreply.github.com>
Github: closes #414
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1916133 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/linux.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 0e716bc9fa..5a2c6aee94 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -312,21 +312,21 @@ jobs: liblua5.3-dev libbrotli-dev libcurl4-openssl-dev libnghttp2-dev libjansson-dev libpcre2-dev gdb perl-doc ${{ matrix.pkgs }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Cache installed libraries - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/root key: cache-libs-${{ env.JOBID }} - name: Cache CPAN modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/perl5 key: cache-cpan-${{ env.JOBID }} - name: Configure environment run: ./test/travis_before_linux.sh timeout-minutes: 15 - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: failure() with: name: config.log-${{ env.JOBID }} @@ -334,7 +334,7 @@ jobs: /home/runner/build/**/config.log - name: Build and test run: ./test/travis_run_linux.sh - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: failure() with: name: error_log-${{ env.JOBID }} |