Skip to content
Open
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
28 changes: 14 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install actionlint v1.7.7
run: |
Expand Down Expand Up @@ -71,19 +71,19 @@ jobs:
contents: read
checks: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 1

- uses: actions/setup-dotnet@v4
- uses: actions/setup-dotnet@v5
with:
global-json-file: global.json

- name: .NET SDK version
run: dotnet --version

- name: Cache NuGet packages
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/*.props', 'global.json', 'nuget.config') }}
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:

- name: Upload test results and coverage
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: dotnet-test-results
path: TestResults/
Expand Down Expand Up @@ -141,11 +141,11 @@ jobs:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 1

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version-file: frontend/.nvmrc
cache: npm
Expand All @@ -158,7 +158,7 @@ jobs:
run: npm ci

- name: ESLint cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: frontend/.eslintcache
key: ${{ runner.os }}-eslint-${{ hashFiles('frontend/eslint.config.mjs', 'frontend/package-lock.json', 'frontend/tsconfig.json', 'frontend/tsconfig.app.json', 'frontend/tsconfig.node.json') }}
Expand All @@ -183,11 +183,11 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 1

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version-file: frontend/.nvmrc

Expand All @@ -197,7 +197,7 @@ jobs:
- name: Проверка ссылок в Markdown (lychee)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: lycheeverse/lychee-action@v2.4.0
uses: lycheeverse/lychee-action@v2.8.0
with:
args: --verbose --no-progress --exclude-mail --max-concurrency 6 --accept 200,206,429 --exclude '^https?://(127\.0\.0\.1|localhost)' README.md CONTRIBUTING.md SECURITY.md docs

Expand All @@ -217,11 +217,11 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 1

- uses: docker/setup-buildx-action@v3
- uses: docker/setup-buildx-action@v4

- name: Validate Compose files
run: |
Expand Down Expand Up @@ -311,7 +311,7 @@ jobs:
contents: read
pull-requests: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ jobs:
security-events: write

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: github/codeql-action/init@v3
- uses: github/codeql-action/init@v4
with:
languages: csharp
queries: security-and-quality

- uses: actions/setup-dotnet@v4
- uses: actions/setup-dotnet@v5
with:
global-json-file: global.json

Expand All @@ -46,7 +46,7 @@ jobs:
dotnet restore OrderTracking.sln
dotnet build OrderTracking.sln -c Release --no-restore /p:SkipNSwag=true

- uses: github/codeql-action/analyze@v3
- uses: github/codeql-action/analyze@v4

- name: Job summary
if: always()
Expand Down
Loading