Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
Comment thread
dgee2 marked this conversation as resolved.

# Add any setup steps before running the `github/codeql-action/init` action.
# This includes steps like installing compilers or runtimes (`actions/setup-node`
Expand All @@ -69,7 +69,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
uses: github/codeql-action/init@v4.36.3
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
Expand Down Expand Up @@ -105,6 +105,6 @@ jobs:
exit 1

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
uses: github/codeql-action/analyze@v4.36.3
with:
category: "/language:${{matrix.language}}"
32 changes: 16 additions & 16 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
steps:
- name: Checkout
if: github.event_name == 'pull_request'
uses: actions/checkout@v6
uses: actions/checkout@v7
Comment thread
dgee2 marked this conversation as resolved.

- name: Check for file changes
if: github.event_name == 'pull_request'
uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1
uses: dorny/paths-filter@7b450fff21473bca461d4b92ce414b9d0420d706 # v4.0.2
id: filter
with:
filters: |
Expand All @@ -57,10 +57,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
Comment thread
dgee2 marked this conversation as resolved.

- name: Dependency Review
uses: actions/dependency-review-action@v4
uses: actions/dependency-review-action@v5
Comment thread
dgee2 marked this conversation as resolved.

backend-build:
name: Create OpenAPI spec
Expand All @@ -75,10 +75,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
Comment thread
dgee2 marked this conversation as resolved.

- name: Setup dotnet 10.x
uses: actions/setup-dotnet@v5
uses: actions/setup-dotnet@v5.4.0
with:
dotnet-version: "10.0.x"

Expand All @@ -91,7 +91,7 @@ jobs:
working-directory: ./backend

- name: Upload OpenAPI document
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v7.0.1
with:
name: openapi-spec
path: open-api/menu-api.json
Expand All @@ -110,10 +110,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
Comment thread
dgee2 marked this conversation as resolved.

- name: Setup dotnet 10.x
uses: actions/setup-dotnet@v5
uses: actions/setup-dotnet@v5.4.0
with:
dotnet-version: "10.0.x"

Expand Down Expand Up @@ -147,10 +147,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
Comment thread
dgee2 marked this conversation as resolved.

- name: Setup dotnet 10.x
uses: actions/setup-dotnet@v5
uses: actions/setup-dotnet@v5.4.0
with:
dotnet-version: "10.0.x"

Expand Down Expand Up @@ -197,18 +197,18 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
Comment thread
dgee2 marked this conversation as resolved.

- name: Download OpenAPI document
if: needs.backend-build.result == 'success'
uses: actions/download-artifact@v8
uses: actions/download-artifact@v8.0.1
with:
name: openapi-spec
path: open-api
merge-multiple: true

- name: Use Node.js 22.x
uses: actions/setup-node@v6
uses: actions/setup-node@v6.4.0
with:
node-version: 22.x

Expand All @@ -221,7 +221,7 @@ jobs:
working-directory: ./ui/menu-website

- name: Cache pnpm store
uses: actions/cache@v5
uses: actions/cache@v6.1.0
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('ui/menu-website/pnpm-lock.yaml', 'ui/menu-website/package.json') }}
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
working-directory: ./ui/menu-website

- name: Cache Playwright browsers
uses: actions/cache@v5
uses: actions/cache@v6.1.0
id: playwright-cache
with:
path: ~/.cache/ms-playwright
Expand Down
Loading