Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/check-authorized-user.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_call:
jobs:
check-authorized-user:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
defaults:
run:
shell: pwsh
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cve-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ defaults:
jobs:
build:
name: Linux
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./src
Expand All @@ -21,7 +21,7 @@ jobs:
- name: Setup .NET SDK
uses: actions/setup-dotnet@v6.0.0
with:
dotnet-version: 10.0.x
global-json-file: global.json
- name: Restore
id: restore
run: echo "CVECOUNT=$(dotnet restore -v m | grep -c -e 'NU190[1-4]')" >> "$GITHUB_OUTPUT"
Expand All @@ -32,4 +32,4 @@ jobs:
uses: actions/upload-artifact@v7
with:
name: vulnerabilities
path: ${{ github.workspace }}/vulnerabilities.json
path: ${{ github.workspace }}/vulnerabilities.json
2 changes: 1 addition & 1 deletion .github/workflows/not-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup .NET SDK
uses: actions/setup-dotnet@v6.0.0
with:
dotnet-version: 10.0.x
global-json-file: global.json
- name: Build
run: dotnet build src --configuration Release
- name: Run tests
Expand Down
44 changes: 0 additions & 44 deletions .github/workflows/publish.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/push-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_call:
jobs:
push-docker-images:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
defaults:
run:
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push-nuget-packages-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
permissions:
id-token: write
contents: write
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
defaults:
run:
shell: pwsh
steps:
- name: Setup .NET SDK
uses: actions/setup-dotnet@v6.0.0
with:
dotnet-version: 10.0.x
global-json-file: global.json
- name: Download assets from draft release
run: |
$name = "${{ inputs.version }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push-nuget-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:
push-nuget-packages:
permissions:
id-token: write
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
defaults:
run:
shell: pwsh
steps:
- name: Setup .NET SDK
uses: actions/setup-dotnet@v6.0.0
with:
dotnet-version: 10.0.x
global-json-file: global.json
- name: Download assets from release
run: |
gh release download "${{ inputs.version }}" --repo "${{ github.repository }}" --pattern "*.nupkg" --dir nugets
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-powershell-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
type: string
jobs:
push-powershell-packages:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
defaults:
run:
shell: pwsh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-release-info-to-aws-s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
type: string
jobs:
push-release-info-to-aws-s3:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
defaults:
run:
shell: pwsh
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-deploy-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:
uses: ./.github/workflows/check-authorized-user.yml
publish-release-notes:
needs: check-authorized-user
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
defaults:
run:
shell: pwsh
steps:
- name: Setup .NET SDK
uses: actions/setup-dotnet@v6.0.0
with:
dotnet-version: 10.0.x
global-json-file: global.json
- name: Setup GitReleaseManager
# https://github.com/GitTools/GitReleaseManager#net-global-tool
run: dotnet tool install --global GitReleaseManager.Tool
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
secrets: inherit
create-release-notes:
needs: check-authorized-user
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
defaults:
run:
shell: pwsh
Expand All @@ -30,7 +30,7 @@ jobs:
- name: Setup .NET SDK
uses: actions/setup-dotnet@v6.0.0
with:
dotnet-version: 10.0.x
global-json-file: global.json
- name: Setup GitReleaseManager
# https://github.com/GitTools/GitReleaseManager#net-global-tool
run: |
Expand Down
24 changes: 0 additions & 24 deletions .github/workflows/update-dependecies.yml

This file was deleted.