From d8d5691307160e5d7681a26edbf9ab0827fe0b3c Mon Sep 17 00:00:00 2001 From: Simone Basso Date: Mon, 12 Aug 2024 20:03:24 +0200 Subject: [PATCH 1/2] chore: bump actions and runner version I noticed warnings in the actions runs. --- .github/workflows/update_databases.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/update_databases.yml b/.github/workflows/update_databases.yml index 3cf81b3..2e4e7a7 100644 --- a/.github/workflows/update_databases.yml +++ b/.github/workflows/update_databases.yml @@ -11,24 +11,24 @@ on: jobs: update_databases: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: cache inputs and outputs - uses: actions/cache@v3 + uses: actions/cache@v4 with: key: update_databases_inputs_outputs path: | ~/cache_dir ~/outputs - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: go-version: ">=1.18.0" cache: true - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: "3.9" cache: "pip" From 42fcf5f791df017495cdae86daea5126e0598151 Mon Sep 17 00:00:00 2001 From: Simone Basso Date: Mon, 12 Aug 2024 20:04:21 +0200 Subject: [PATCH 2/2] Update update_databases.yml --- .github/workflows/update_databases.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/update_databases.yml b/.github/workflows/update_databases.yml index 2e4e7a7..2f492e8 100644 --- a/.github/workflows/update_databases.yml +++ b/.github/workflows/update_databases.yml @@ -5,6 +5,7 @@ on: # according to the mtime of the gzip it's created on the first day of the # month at 30 minutes past midnight - cron: "0 2 1-4 * *" + pull_request: push: branches: - main