Skip to content

Commit

Permalink
Setup Dependabot & CI/CodeQL workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
viral32111 committed Jul 26, 2023
1 parent 48b1c28 commit c4aad4c
Show file tree
Hide file tree
Showing 3 changed files with 134 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: 2
updates:

# Workflows
- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly

# Project
- package-ecosystem: gradle
directory: /
schedule:
interval: monthly
73 changes: 73 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
name: CI

on:
push:
paths:
- 'gradle/**'
- 'gradle*'
- 'src/**'
- '*.gradle.kts'
- 'gradle.properties'
- '.github/workflows/ci.yml'
branches:
- '**'
tags:
- '*.*.*'
workflow_dispatch:

env:
ARTIFACT_NAME: library

jobs:
build:
name: Build
runs-on: ubuntu-22.04
permissions:
contents: read
packages: read
steps:
- name: Clone repository
uses: actions/checkout@v3

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

- name: Build project
uses: gradle/gradle-build-action@v2
env:
GHPKG_USER: ${{ github.repository_owner }}
GHPKG_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
arguments: build
cache-disabled: true

- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
name: ${{ env.ARTIFACT_NAME }}
path: ./build/libs/*.jar

release:
name: Release
runs-on: ubuntu-22.04
needs: build
if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }}
permissions:
contents: write
steps:
- name: Download build artifact
uses: actions/download-artifact@v3
with:
name: ${{ env.ARTIFACT_NAME }}
path: ./artifact/

- name: Create draft release
uses: softprops/action-gh-release@v1
with:
draft: true
tag_name: ${{ github.ref_name }}
files: ./artifact/*.jar
token: ${{ secrets.GITHUB_TOKEN }}
47 changes: 47 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: CodeQL

on:
push:
paths:
- '**'
branches:
- '**'
schedule:
- cron: '0 0 * * 0'

jobs:
codeql:
name: CodeQL
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
packages: read
security-events: write
steps:
- name: Clone repository
uses: actions/checkout@v3

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

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: java
tools: latest

- name: Build project
uses: gradle/gradle-build-action@v2
env:
GHPKG_USER: ${{ github.repository_owner }}
GHPKG_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
arguments: build
cache-disabled: true

- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v2

0 comments on commit c4aad4c

Please sign in to comment.