aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
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
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')
-rw-r--r--.github/workflows/codeql.yml6
-rw-r--r--.github/workflows/deploy.yml12
2 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
index 65748cd..3639c37 100644
--- a/.github/workflows/codeql.yml
+++ b/.github/workflows/codeql.yml
@@ -24,16 +24,16 @@ jobs:
build-mode: none
steps:
- name: Checkout repository
- uses: actions/checkout@v4
+ uses: actions/checkout@v5
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
- uses: github/codeql-action/init@v3
+ uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
queries: security-extended
- name: Perform CodeQL Analysis
- uses: github/codeql-action/analyze@v3
+ uses: github/codeql-action/analyze@v4
with:
category: "/language:${{matrix.language}}"
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 }}