Skip to content

Outdated Integrations #69

Outdated Integrations

Outdated Integrations #69

name: Outdated Integrations
on:
schedule:
- cron: "0 0 * * 0" # Runs every Sunday at midnight UTC
workflow_dispatch:
concurrency:
# Automatically cancel previous runs if a new one is triggered to conserve resources.
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Find new major versions for the contrib package dependencies
runs-on: ubuntu-latest
permissions:
actions: read
contents: write
pull-requests: write
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- run: go clean -modcache
- name: Add dependencies
run: |
go get github.com/go-git/go-billy/v5/memfs
go get github.com/go-git/go-git/v5
go get github.com/go-git/go-git/v5/plumbing
go get github.com/go-git/go-git/v5/storage/memory
- run: go run .github/workflows/apps/latest_major_versions.go