aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/deploy.yml
diff options
context:
space:
mode:
authorrenovate[bot] <29139614+renovate[bot]@users.noreply.github.com>2025-11-05 00:08:26 +0100
committerGitHub <noreply@github.com>2025-11-05 00:08:26 +0100
commitc6bb2a497b851f2de12c1ef4b7174125386801b5 (patch)
treef99a144d57993f7c85ae214ea2d97064baed51b8 /.github/workflows/deploy.yml
parent724ea832c78909e8948b1f89372a5bcbb4615ffc (diff)
chore(deps): update all github actions (major) (#66)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Diffstat (limited to '.github/workflows/deploy.yml')
-rw-r--r--.github/workflows/deploy.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index fb1695c..077e9b3 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -19,7 +19,7 @@ jobs:
with:
submodules: true
lfs: false
- - uses: actions/setup-node@v5
+ - uses: actions/setup-node@v6
with:
node-version: lts/*
cache: "npm"
@@ -36,7 +36,7 @@ jobs:
mkdir -p dist/frontend
cp -R src/frontend/build/client/. dist/frontend/
- name: Archive Production Artifact
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v5
with:
name: production
path: dist
@@ -59,7 +59,7 @@ jobs:
- name: Build backend
run: dotnet publish -c Release -r linux-arm64 --self-contained false src/Costasdev.Busurbano.Backend/Costasdev.Busurbano.Backend.csproj -o dist/backend
- name: Archive Backend Artifact
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v5
with:
name: backend
path: dist/backend
@@ -72,17 +72,17 @@ jobs:
environment: Production
steps:
- name: Download Frontend Artifact
- uses: actions/download-artifact@v5
+ uses: actions/download-artifact@v6
with:
name: production
path: dist
- name: Download Backend Artifact
- uses: actions/download-artifact@v5
+ uses: actions/download-artifact@v6
with:
name: backend
path: dist/backend
- name: Connect to tailnet
- uses: tailscale/github-action@v3
+ uses: tailscale/github-action@v4
with:
oauth-client-id: ${{ secrets.TAILSCALE_CLIENT_ID }}
oauth-secret: ${{ secrets.TAILSCALE_CLIENT_SECRET }}