Skip to content

Commit

Permalink
Update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bfabiszewski committed Oct 29, 2024
1 parent 3c7ae64 commit 9062742
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
options: --disable-encryption

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: install dependencies
run: |
if [ "${{ runner.os }}" = "Linux" ]; then
Expand All @@ -50,10 +50,10 @@ jobs:
- name: make distcheck
run: make -j `nproc` distcheck
- name: upload debug artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: ${{ failure() }}
with:
name: test-logs
name: test-logs-${{ matrix.runs-on }}
path: |
**/tests/test-suite.log
**/tests/samples/*.log
Expand All @@ -80,7 +80,7 @@ jobs:
mingw-w64-x86_64-libxml2
mingw-w64-x86_64-zlib
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: autogen
run: sh ./autogen.sh
- name: configure
Expand All @@ -92,10 +92,10 @@ jobs:
- name: make distcheck
run: make -j$(nproc) distcheck
- name: upload debug artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: ${{ failure() }}
with:
name: test-logs
name: test-logs-${{ matrix.runs-on }}
path: |
**/tests/test-suite.log
**/tests/samples/*.log
2 changes: 1 addition & 1 deletion .github/workflows/coverity-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
shell: bash

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
Expand Down
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
2024-10-29: Update github actions
2024-10-29: Fix CMake build, closes #49
2024-07-04: Minor rewording in man page
2024-06-17: Fix typo
Expand Down

0 comments on commit 9062742

Please sign in to comment.