Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build Updates #345

Merged
merged 3 commits into from
Oct 28, 2024
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
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
26 changes: 26 additions & 0 deletions .github/workflows/dependency-review-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Dependency review for pull requests

on:
workflow_dispatch:
pull_request:

permissions:
contents: write

jobs:
dependency-submission:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17

- name: Generate and submit dependency graph
uses: gradle/actions/dependency-submission@v3
with:
build-scan-publish: false

- name: Perform dependency review
uses: actions/dependency-review-action@v3
26 changes: 26 additions & 0 deletions .github/workflows/dependency-submission.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Dependency Submission

on:
workflow_dispatch:
push:
branches:
- master

permissions:
contents: write

jobs:
dependency-submission:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- name: Generate and submit dependency graph
uses: gradle/actions/dependency-submission@v3
with:
build-scan-publish: false
10 changes: 5 additions & 5 deletions gradle/verification-metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
<pgp value="7615ad56144df2376f49d98b1669c4bb543e0445"/>
</artifact>
</component>
<component group="com.gradle" name="develocity-gradle-plugin" version="3.17.5">
<artifact name="develocity-gradle-plugin-3.17.5.jar">
<component group="com.gradle" name="develocity-gradle-plugin" version="3.18.1">
<artifact name="develocity-gradle-plugin-3.18.1.jar">
<pgp value="7b79add11f8a779fe90fd3d0893a028475557671"/>
</artifact>
</component>
Expand All @@ -50,9 +50,9 @@
<sha256 value="a0a054c6c621788765e9cb2a722aa3206f11122f86181594c4f768b794b5eab9" origin="Generated by Gradle because artifact wasn't signed"/>
</artifact>
</component>
<component group="io.github.gradle" name="gradle-enterprise-conventions-plugin" version="0.10.1">
<artifact name="gradle-enterprise-conventions-plugin-0.10.1.jar">
<sha256 value="69487b9158b5ec4620a9adbd5cc63fdfd1b00ce482bfa595f0340594ae10e388" origin="Verified" reason="Artifact is not signed"/>
<component group="io.github.gradle" name="gradle-enterprise-conventions-plugin" version="0.10.2">
<artifact name="gradle-enterprise-conventions-plugin-0.10.2.jar">
<sha256 value="48d4b3bb8337998f191f2d2a5d7afbdeaed39dd248c7c2d2ab2fcdde76b365e9" origin="Verified" reason="Artifact is not signed"/>
</artifact>
</component>
<component group="junit" name="junit" version="4.12">
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id("com.gradle.develocity").version("3.17.5")
id("io.github.gradle.gradle-enterprise-conventions-plugin").version("0.10.1")
id("com.gradle.develocity").version("3.18.1")
id("io.github.gradle.gradle-enterprise-conventions-plugin").version("0.10.2")
}

rootProject.name = "native-platform"
Expand Down
Loading