aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorrenovate[bot] <29139614+renovate[bot]@users.noreply.github.com>2026-04-15 09:10:22 +0000
committerGitHub <noreply@github.com>2026-04-15 09:10:22 +0000
commit0af1d2a8928e1dfd5cc0313989820d3b04a07068 (patch)
treecc842dce2e2b46ac42a2257292106aaf2e252089 /.github
parentfc6d4cbaf78f75a5ac234862ecbf86faeb78a338 (diff)
Update all GitHub Actionsrenovate/major-gh-actions-all
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/deploy.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index cf88502..1ff7b7a 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -21,7 +21,7 @@ jobs:
stops-script: ${{ steps.filter.outputs.stops-script }}
steps:
- uses: actions/checkout@v6
- - uses: dorny/paths-filter@v3
+ - uses: dorny/paths-filter@v4
id: filter
with:
filters: |
@@ -61,7 +61,7 @@ jobs:
mkdir -p dist/frontend
cp -R src/frontend/build/client/. dist/frontend/
- name: Archive Production Artifact
- uses: actions/upload-artifact@v5
+ uses: actions/upload-artifact@v7
with:
name: production
path: dist
@@ -90,7 +90,7 @@ jobs:
- name: Build EF migrations bundle
run: dotnet ef migrations bundle --project src/Enmarcha.Backend/Enmarcha.Backend.csproj -r linux-arm64 --self-contained -o dist/backend/efbundle
- name: Archive Backend Artifact
- uses: actions/upload-artifact@v5
+ uses: actions/upload-artifact@v7
with:
name: backend
path: dist/backend
@@ -109,13 +109,13 @@ jobs:
steps:
- name: Download Frontend Artifact
if: needs.detect-changes.outputs.frontend == 'true'
- uses: actions/download-artifact@v6
+ uses: actions/download-artifact@v8
with:
name: production
path: dist
- name: Download Backend Artifact
if: needs.detect-changes.outputs.backend == 'true'
- uses: actions/download-artifact@v6
+ uses: actions/download-artifact@v8
with:
name: backend
path: dist/backend