aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build.yaml6
-rw-r--r--.github/workflows/dependabot-auto.yaml2
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index d97f15c..68be2c0 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -24,13 +24,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
- uses: actions/checkout@v4
+ uses: actions/checkout@v5
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 8
- name: Install Node.js
- uses: actions/setup-node@v4
+ uses: actions/setup-node@v5
with:
node-version: 20
cache: pnpm
@@ -41,7 +41,7 @@ jobs:
- name: Upload Artifacts
if: ${{ github.ref == 'refs/heads/master' }}
- uses: actions/upload-pages-artifact@v3
+ uses: actions/upload-pages-artifact@v4
with:
# this should match the `pages` option in your adapter-static options
path: 'app/build/'
diff --git a/.github/workflows/dependabot-auto.yaml b/.github/workflows/dependabot-auto.yaml
index 167ad15..710bfbb 100644
--- a/.github/workflows/dependabot-auto.yaml
+++ b/.github/workflows/dependabot-auto.yaml
@@ -15,7 +15,7 @@ jobs:
steps:
- name: Dependabot metadata
id: dependabot-metadata
- uses: dependabot/fetch-metadata@v2.3.0
+ uses: dependabot/fetch-metadata@v2.4.0
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --rebase "$PR_URL"
env: