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
4 changes: 2 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install Rust WASM target
uses: actions-rust-lang/setup-rust-toolchain@v1
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:

- name: Upload artifact
if: startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch'
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4
with:
path: ./html-query-web-ui/dist/
retention-days: 1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
env:
RUST_BACKTRACE: "1"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install Rust
id: rust
uses: actions-rust-lang/setup-rust-toolchain@v1
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
container:
image: alpine:latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: apk add libgcc gcc musl-dev bash curl

- name: Install Rust
Expand All @@ -89,7 +89,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install Rust
id: rust
Expand Down
Loading