From b989aa46fc5e761178f9cdd3f7e8dfbcf74a2a98 Mon Sep 17 00:00:00 2001 From: Hendrik Eeckhaut Date: Wed, 17 Apr 2024 23:17:25 +0200 Subject: [PATCH] Update github build dependencies --- .github/workflows/yew.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/yew.yml b/.github/workflows/yew.yml index 5cec1fc..6e80708 100644 --- a/.github/workflows/yew.yml +++ b/.github/workflows/yew.yml @@ -17,7 +17,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Restore cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cargo/bin @@ -27,7 +27,7 @@ jobs: key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - name: Install Trunk - uses: jetli/trunk-action@v0.4.0 + uses: jetli/trunk-action@v0.5.0 with: # Optional version of trunk to install(eg. 'v0.16.0', 'latest') version: "latest" @@ -37,9 +37,9 @@ jobs: - name: Build the Rust WASM app and all of its assets run: trunk build --public-url ${{ github.event.repository.name }} --release - name: Setup Pages - uses: actions/configure-pages@v3 + uses: actions/configure-pages@v5 - name: Upload artifact - uses: actions/upload-pages-artifact@v2 + uses: actions/upload-pages-artifact@v3.0.1 with: path: "./dist" @@ -64,4 +64,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v2 # or the latest "vX.X.X" version tag for this action \ No newline at end of file + uses: actions/deploy-pages@v4.0.5 \ No newline at end of file