diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 75fe3f06..4dee1e85 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -11,3 +11,7 @@ updates: target-branch: "develop" schedule: interval: "monthly" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/workflows/check_continue.yml b/.github/workflows/check_continue.yml index 586eb761..7b46b4b0 100644 --- a/.github/workflows/check_continue.yml +++ b/.github/workflows/check_continue.yml @@ -23,7 +23,7 @@ jobs: path: | ./datawarehouse* - name: Set up Python - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 - name: Install package run: pip install -e . - name: Run verify-scripts diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3baefa5d..9f309d5e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: run: working-directory: dao_analyzer_components steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3 - uses: actions/setup-python@v4 with: @@ -43,7 +43,7 @@ jobs: run: working-directory: dao_analyzer_components steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: registry-url: 'https://registry.npmjs.org' @@ -65,7 +65,7 @@ jobs: env: DEBUG: TRUE steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: @@ -80,7 +80,7 @@ jobs: runs-on: ubuntu-latest needs: [dao_analyzer_components, testing_python] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 # Downloading tags to gen version name - uses: actions/download-artifact@v3 diff --git a/.github/workflows/update_aragon_names.yml b/.github/workflows/update_aragon_names.yml deleted file mode 100644 index 561a4d88..00000000 --- a/.github/workflows/update_aragon_names.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Update Aragon names -on: - workflow_dispatch: - schedule: - # Run every Monday at 5:42 UTC - - cron: "42 5 * * 1" -jobs: - update_names: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - with: - ref: develop - - name: Run Script - run: python ./scripts/updateAragonNames.py ./cache_scripts/aragon/dao_names.json > ./cache_scripts/aragon/dao_names.json - - name: Commit files - run: | - git config user.email "noreply@github.com" - git config user.name "GitHub" - git add ./cache_scripts/aragon/dao_names.json - git diff --staged --quiet || git commit -m "Updated Aragon DAO Names `date -I`" - - name: Push Changes - uses: peter-evans/create-pull-request@v3 - with: - title: New Aragon Names - reviewers: daviddavo - labels: automated - branch: autoimport-aragon-names - body: | - This has been an automated pull-request. Before merging, please - check if the commited file seems OK to merge.