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
23 changes: 7 additions & 16 deletions .github/workflows/codeql-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@ on:
push:
branches: [ develop-v1, develop-v*, release-v* ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ develop-v1 ]
schedule:
- cron: '30 3 * * 1'

jobs:
analyze:
name: Analyze

runs-on: ubuntu-latest

permissions:
actions: read
contents: read
Expand All @@ -25,7 +26,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v7

- name: Setup .NET
uses: actions/setup-dotnet@v4
Expand All @@ -34,26 +35,16 @@ jobs:
3.1.x
6.0.x
8.0.x
10.0.x

# 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 }}

- name: Autobuild
uses: github/codeql-action/autobuild@v3

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl

# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language

#- run: |
# make bootstrap
# make release
uses: github/codeql-action/autobuild@v4

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4
9 changes: 7 additions & 2 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,16 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest

permissions:
contents: write

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v5
- uses: actions/checkout@v7
with:
lfs: true

- uses: actions/setup-python@v7
with:
python-version: 3.x

Expand Down
19 changes: 13 additions & 6 deletions .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
bake-version:
required: false
type: string
default: '0.37.51'
default: '0.41.56'
environment:
required: false
type: string
Expand All @@ -27,7 +27,11 @@ on:
jobs:
build:
runs-on:
- ubuntu-22.04
- ubuntu-24.04

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: ${{ !contains(github.ref, 'release') }}

environment:
name: ${{ inputs.environment }}
Expand Down Expand Up @@ -84,15 +88,18 @@ jobs:
with:
stack-version: 6.8.3

- uses: actions/checkout@v3
- uses: actions/checkout@v7
with:
lfs: true

- name: Setup .NET
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v6
with:
dotnet-version: |
3.1.x
6.0.x
8.0.x
10.0.x

# Yes, EventFlow has a custom built build tool. If you are reading this
# you might have a better idea of how to do it alternatively, if so,
Expand All @@ -113,15 +120,15 @@ jobs:
--destination="nuget>github,nuget,release>github"

- name: Upload NuGet packages
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: success()
with:
name: packages
path: "**/*nupkg"
if-no-files-found: error

- name: Upload test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: success() || failure()
with:
name: test-results
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/stale.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ permissions:
jobs:
stale:
runs-on: ubuntu-latest

steps:
- uses: actions/stale@v8
with:
Expand Down
24 changes: 0 additions & 24 deletions .github/workflows/test-reports.yaml

This file was deleted.

Loading