Skip to content

Commit

Permalink
added github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
DatL4g committed Jul 18, 2024
1 parent 6819010 commit 13e9e26
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @datl4g
53 changes: 53 additions & 0 deletions .github/workflows/dependency-versions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Check Dependency Versions
on:
push:
workflow_dispatch:

jobs:
dependency-versions:
runs-on: ubuntu-latest

permissions:
checks: write
pull-requests: write

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

- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3

- name: Check Dependency Versions
run: ./gradlew dependencyUpdates

- name: Publish version results
run: |
ruby << 'EOF' | gh api -X POST '/repos/${{ github.repository }}/check-runs' --input -
require 'json'
report = {
name: ENV.fetch('REPORT_CHECK_NAME'),
head_sha: ENV.fetch('REPORT_SHA'),
status: 'completed',
conclusion: ENV.fetch('REPORT_CONCLUSION'),
output: {
title: ENV.fetch('REPORT_CHECK_OUTPUT_TITLE'),
summary: File.read(ENV.fetch('REPORT_CHECK_OUTPUT_SUMMARY_FILE')),
},
}
puts report.to_json
EOF
env:
REPORT_SHA: ${{ github.event.pull_request.head.sha || github.sha }}
GITHUB_TOKEN: ${{ github.token }}
REPORT_CHECK_NAME: Version Results
REPORT_CHECK_OUTPUT_TITLE: ${{ github.event.repository.updated_at }}
REPORT_CHECK_OUTPUT_SUMMARY_FILE: build/dependencyUpdates/report.md
REPORT_CONCLUSION: ${{ job.status }}
shell: bash

0 comments on commit 13e9e26

Please sign in to comment.