Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
2b6404c
Merge pull request #146 from oracle-devrel/develop
bhlohumi Aug 1, 2025
bc8a6c9
Merge pull request #147 from oracle-devrel/develop
xs2suruchi Aug 7, 2025
6a43e9d
Merge pull request #148 from oracle-devrel/develop
xs2suruchi Sep 17, 2025
365182b
Merge pull request #149 from oracle-devrel/develop
xs2suruchi Sep 17, 2025
2153091
Merge pull request #150 from oracle-devrel/develop
xs2suruchi Oct 10, 2025
a8d1342
Automation Toolkit Release v2025.2.0
xs2suruchi Oct 10, 2025
b85c318
Merge pull request #152 from oracle-devrel/develop
xs2suruchi Oct 10, 2025
0d791c3
Merge pull request #153 from oracle-devrel/develop
xs2suruchi Oct 10, 2025
3be5cb6
Merge pull request #155 from oracle-devrel/develop
bhlohumi Dec 26, 2025
8e3724d
Merge pull request #156 from oracle-devrel/develop
xs2suruchi Mar 2, 2026
a075730
Merge pull request #162 from oracle-devrel/develop
xs2suruchi Mar 12, 2026
80675d5
Automation Toolkit Release v2026.1.0
xs2suruchi Mar 27, 2026
007e630
Merge pull request #165 from oracle-devrel/develop
xs2suruchi Mar 27, 2026
c67ff3b
Merge pull request #168 from oracle-devrel/develop
xs2suruchi May 8, 2026
2f4efdc
Merge pull request #169 from oracle-devrel/develop
xs2suruchi May 8, 2026
5ecb8f7
Merge pull request #171 from oracle-devrel/develop
bhlohumi Jul 10, 2026
5f5e934
Add CodeQL scanning workflow
Ela689 Jul 13, 2026
1c3ae48
Merge pull request #172 from Ela689/codeql-scanning
bhlohumi Jul 13, 2026
976a1fa
Merge pull request #173 from oracle-devrel/develop
bhlohumi Jul 13, 2026
b1ebdf4
Add Dependabot configuration
Ela689 Jul 13, 2026
af0b149
Add OpenSSF Scorecard workflow
Ela689 Jul 13, 2026
43d9641
Add Macaron analysis workflow
Ela689 Jul 13, 2026
cd4dd55
Merge pull request #174 from Ela689/add-dependabot-config
unamachi Jul 14, 2026
7207c74
Merge pull request #175 from Ela689/add-scorecard-workflow
unamachi Jul 14, 2026
69c6501
Merge pull request #176 from Ela689/add-macaron-analysis
unamachi Jul 14, 2026
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
8 changes: 8 additions & 0 deletions .github/codeql/codeql-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Copyright (c) 2026, Oracle and/or its affiliates. All rights reserved.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/.

name: CodeQL configuration
paths:
- cd3_automation_toolkit
- othertools
- .github/workflows
40 changes: 40 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Copyright (c) 2026, Oracle and/or its affiliates. All rights reserved.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/.

# This configuration enables Dependabot version updates.
# https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/about-dependabot-version-updates

version: 2
updates:
- package-ecosystem: pip
directory: /
schedule:
interval: weekly
commit-message:
prefix: chore
prefix-development: chore
include: scope
open-pull-requests-limit: 5
target-branch: main

- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
commit-message:
prefix: chore
prefix-development: chore
include: scope
open-pull-requests-limit: 5
target-branch: main

- package-ecosystem: docker
directory: /
schedule:
interval: weekly
commit-message:
prefix: chore
prefix-development: chore
include: scope
open-pull-requests-limit: 5
target-branch: main
52 changes: 52 additions & 0 deletions .github/workflows/codeql-analysis.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Copyright (c) 2026, Oracle and/or its affiliates. All rights reserved.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/.

# Run CodeQL over the repository. For more configuration options see .github/codeql/codeql-config.yaml
# and: https://github.com/github/codeql-action

name: CodeQL
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
schedule:
- cron: 20 15 * * 3
permissions:
contents: read

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
# Learn more about CodeQL language support at https://git.io/codeql-language-support
language: [python, actions]
steps:

- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
with:
languages: ${{ matrix.language }}
config-file: .github/codeql/codeql-config.yaml
# Override the default behavior so that the action doesn't attempt
# to auto-install Python dependencies.
setup-python-dependencies: false

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15

46 changes: 46 additions & 0 deletions .github/workflows/macaron-analysis.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Copyright (c) 2026 - 2026, Oracle and/or its affiliates. All rights reserved.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/.

# Run Macaron's policies and generate Verification Summary Attestation reports.
# See https://github.com/oracle/macaron

name: Run Macaron to check supply chain security issues

on:
push:
branches:
- main
paths:
- .github/workflows/**
pull_request:
paths:
- .github/workflows/**
schedule:
- cron: 20 15 * * 3
workflow_dispatch:

permissions:
contents: read

jobs:
run_macaron:
runs-on: ubuntu-latest

steps:
- name: Check out repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
persist-credentials: false

# Check the GitHub Actions workflows in the repository for vulnerabilities.
# Note: policy_purl is adapted for the CD3 Automation Toolkit repository.
- name: Run Macaron action
id: run_macaron
continue-on-error: true
uses: oracle/macaron@4ddb55e3c9ef2c77b548be55c557078c4476fd9c # v0.24.0
with:
repo_path: ./
policy_file: check-github-actions
policy_purl: pkg:github.com/oracle-devrel/cd3-automation-toolkit@.*
reports_retention_days: 3
43 changes: 43 additions & 0 deletions .github/workflows/scorecards-analysis.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Copyright (c) 2026, Oracle and/or its affiliates. All rights reserved.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/.

# Run Scorecard for this repository to further check and harden software and process.

name: Scorecards supply-chain security
on:
branch_protection_rule:
schedule:
- cron: 27 20 * * 1
push:
branches: [main]

permissions: read-all

jobs:
analysis:
name: Scorecards analysis
runs-on: ubuntu-latest
permissions:
# Needed to upload the results to code-scanning dashboard.
security-events: write
actions: read
contents: read
# Needed to access OIDC token.
id-token: write
steps:
- name: Check out repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false

- name: Run analysis
uses: ossf/scorecard-action@0864cf19026789058feabb7e87baa5f140aac736 # v2.4.2
with:
results_file: results.sarif
results_format: sarif
publish_results: true

- name: Upload analysis results
uses: github/codeql-action/upload-sarif@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
with:
sarif_file: results.sarif
Loading