From 90b798c2b6c887380bdc8ef53de54e4e9016db94 Mon Sep 17 00:00:00 2001 From: Luca Spinazzola Date: Thu, 14 Mar 2024 06:41:12 -0400 Subject: [PATCH] Delete .github/workflows/refreshVersions.yaml --- .github/workflows/refreshVersions.yaml | 71 -------------------------- 1 file changed, 71 deletions(-) delete mode 100644 .github/workflows/refreshVersions.yaml diff --git a/.github/workflows/refreshVersions.yaml b/.github/workflows/refreshVersions.yaml deleted file mode 100644 index 89b3b07e..00000000 --- a/.github/workflows/refreshVersions.yaml +++ /dev/null @@ -1,71 +0,0 @@ -# This file was generated using Kotlin DSL (.github/workflows/refreshVersions.main.kts). -# If you want to modify the workflow, please change the Kotlin file and regenerate this YAML file. -# Generated with https://github.com/krzema12/github-actions-kotlin-dsl - -name: RefreshVersions - -on: - schedule: - - cron: '0 7 * * 1' - workflow_dispatch: - -jobs: - "check_yaml_consistency": - runs-on: "ubuntu-latest" - steps: - - id: step-0 - name: Check out - uses: actions/checkout@v3 - - id: step-1 - name: Execute script - run: rm '.github/workflows/refreshVersions.yaml' && '.github/workflows/refreshVersions.main.kts' - - id: step-2 - name: Consistency check - run: git diff --exit-code '.github/workflows/refreshVersions.yaml' - "Refresh-Versions": - runs-on: "ubuntu-latest" - needs: - - "check_yaml_consistency" - steps: - - id: step-0 - name: check-out - uses: actions/checkout@v3 - with: - ref: main - - id: step-1 - name: setup-java - uses: actions/setup-java@v3 - with: - java-version: 17 - distribution: adopt - - id: step-2 - name: create-branch - uses: peterjgrainger/action-create-branch@v2.2.0 - with: - branch: dependency-update - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - id: step-3 - name: gradle refreshVersions - uses: gradle/gradle-build-action@v2 - with: - arguments: refreshVersions - - id: step-4 - name: Commit - uses: EndBug/add-and-commit@v9 - with: - author_name: GitHub Actions - author_email: noreply@github.com - message: Refresh versions.properties - new_branch: dependency-update - push: --force --set-upstream origin dependency-update - - id: step-5 - name: Pull Request - uses: repo-sync/pull-request@v2 - with: - source_branch: dependency-update - destination_branch: main - pr_title: Upgrade gradle dependencies - pr_body: '[refreshVersions](https://github.com/jmfayard/refreshVersions) has found those library updates!' - pr_draft: true - github_token: ${{ secrets.GITHUB_TOKEN }}