Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-arch-emu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: lscpu

- name: checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
# shell: bash

- name: install dependencies
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
steps:

- name: Checkout
uses: actions/checkout@v2.0.0
uses: actions/checkout@v6

- name: Install tools for build
run: |
Expand All @@ -47,15 +47,15 @@ jobs:
make test_coverage

- name: Deploy
uses: JamesIves/github-pages-deploy-action@4.1.1
uses: JamesIves/github-pages-deploy-action@4
if: matrix.config.deployit && github.event_name == 'push' && github.ref == 'refs/heads/stable'
with:
branch: gh-pages
folder: build/test_coverage/
single-commit: true

- name: Save output
uses: actions/upload-artifact@v4.6.0
uses: actions/upload-artifact@v7
if: matrix.config.deployit
with:
name: test_coverage
Expand All @@ -74,7 +74,7 @@ jobs:
steps:

- name: Checkout
uses: actions/checkout@v2.0.0
uses: actions/checkout@v6

- name: Install dependencies
run: |
Expand Down
Loading