Skip to content

Commit

Permalink
Merge branch 'main' into validation/aligned-layer
Browse files Browse the repository at this point in the history
  • Loading branch information
MegaRedHand authored Jan 17, 2025
2 parents f24c419 + 15ed5d6 commit a07abd9
Show file tree
Hide file tree
Showing 31 changed files with 910 additions and 345 deletions.
39 changes: 39 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
version: 2

updates:
# Group Security Updates
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"
time: "08:00"
timezone: "America/Los_Angeles"
target-branch: "main"
commit-message:
prefix: "[golang-security]"
include: "scope"
pull-request-branch-name:
separator: "-"
open-pull-requests-limit: 0
reviewers:
- "Layr-Labs/avs-devnet"
labels:
- "security"
- "golang"
allow:
- dependency-type: "direct"
groups:
security-updates:
applies-to: security-updates
patterns:
- "*"
update-types:
- "minor"
- "patch"
- "major"

# Version updates
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: CI

on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ '**' ]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

env:
KURTOSIS_VERSION: '1.4.1'
Expand Down Expand Up @@ -170,6 +170,7 @@ jobs:
with:
repository: Layr-Labs/eigenda
path: eigenda/
ref: a294978e346fe9d7ede0f1a57012c36f64f1212a

- name: Download SRS points
run: |
Expand Down
43 changes: 43 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: "codeql-scanning"

on:
push:
branches:
- main
- 'release/*'
pull_request:
branches:
- main
- 'release/*'
schedule:
- cron: '0 9 * * *'

jobs:
CodeQL-Build:
runs-on: ubuntu-latest

permissions:
actions: read
contents: read
security-events: write
pull-requests: read

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive

- name: Install golang
uses: actions/setup-go@v5
with:
go-version: '1.21.13'

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: go

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
Loading

0 comments on commit a07abd9

Please sign in to comment.