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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
name: Build Backend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup .NET
uses: actions/setup-dotnet@v5
uses: actions/setup-dotnet@v6
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

Expand All @@ -32,7 +32,7 @@ jobs:
run: dotnet test JobRecon.slnx --no-build --configuration Release --verbosity normal --collect:"XPlat Code Coverage"

- name: Upload coverage
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v7
with:
fail_ci_if_error: false

Expand All @@ -43,10 +43,10 @@ jobs:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v7
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
Expand All @@ -71,7 +71,7 @@ jobs:
name: Security Scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2
uses: dependabot/fetch-metadata@v3
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
frontend: ${{ steps.filter.outputs.frontend }}
any_changed: ${{ steps.check.outputs.any_changed }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: dorny/paths-filter@v3
- uses: dorny/paths-filter@v4
id: filter
with:
filters: |
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
if: matrix.changed != 'true'
run: echo "Skipping ${{ matrix.service }} - no changes detected"

- uses: actions/checkout@v6
- uses: actions/checkout@v7
if: matrix.changed == 'true'

- name: Set up Docker Buildx
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: main

Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout gitops repo
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: JohannesBreitfeld/homelab-gitops
ssh-key: ${{ secrets.HOMELAB_GITOPS_DEPLOY_KEY }}
Expand Down
Loading