Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.
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
7 changes: 7 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
2 changes: 1 addition & 1 deletion .github/workflows/no-auto-bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v5
- uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5.0.0
with:
sync-labels: true
10 changes: 5 additions & 5 deletions .github/workflows/open-datadog-agent-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:

steps:
- name: Create Token
uses: actions/create-github-app-token@v1
uses: actions/create-github-app-token@67e27a7eb7db372a1c61a7f9bdab8699e9ee57f7 # v1.11.3
id: app-token
with:
app-id: ${{ vars.DATADOG_APP_ID }}
private-key: ${{ secrets.DATADOG_APP_PRIVATE_KEY }}
repositories: datadog-agent

- name: Clone datadog-agent repo
uses: actions/checkout@v4
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
repository: datadog/datadog-agent
persist-credentials: false
Expand All @@ -31,7 +31,7 @@ jobs:
fetch-depth: 0

- name: Clone omnibus-software repo
uses: actions/checkout@v4
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
repository: datadog/omnibus-software
persist-credentials: false
Expand All @@ -41,7 +41,7 @@ jobs:
fetch-depth: 0

- name: Setup Python3
uses: actions/setup-python@v4
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
with:
python-version: "3.11.8"
cache: "pip"
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
inv -e release.set-release-json 'nightly-a7::OMNIBUS_SOFTWARE_VERSION' ${{ steps.new_sha.outputs.NEW_SHA }}

- name: create datadog-agent PR
uses: peter-evans/create-pull-request@v5
uses: peter-evans/create-pull-request@67ccf781d68cd99b580ae25a5c18a1cc84ffff1f # v7.0.6
with:
token: ${{ steps.app-token.outputs.token }}
base: main
Expand Down
2 changes: 1 addition & 1 deletion config/software/openssl3.rb
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@

if windows?
configure_args << "zlib-dynamic"
if ENV['AGENT_FLAVOR'] == "fips"
if ENV["AGENT_FLAVOR"] == "fips"
configure_args << '--openssldir="C:/Program Files/Datadog/Datadog Agent/embedded3/ssl"'
# Provide a context name for our configuration through the registry
configure_args << "-DOSSL_WINCTX=datadog-fips-agent"
Expand Down