From b3ee61c1e33c79e55866f916b389a0b36748a3bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20L=C3=B3pez?= Date: Mon, 22 Aug 2022 09:22:40 -0300 Subject: [PATCH 1/2] Dependabot: Automatically upgrade GitHub Actions --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..12301490 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" From a017fcf985b8a79b66928dbadbb35bd0fac535f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20L=C3=B3pez?= Date: Mon, 22 Aug 2022 09:23:10 -0300 Subject: [PATCH 2/2] GitHub Actions: Update runner Ubuntu version and actions versions --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/echidna.yml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e77d55bc..9246c858 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,17 +12,17 @@ on: jobs: tests: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 strategy: fail-fast: false matrix: type: ["slither", "manticore"] steps: - - uses: actions/checkout@v1 - - name: Set up Python 3.6 - uses: actions/setup-python@v1 + - uses: actions/checkout@v3 + - name: Set up Python 3.8 + uses: actions/setup-python@v4 with: - python-version: 3.6 + python-version: 3.8 - name: Install dependencies run: | sudo wget -O /usr/bin/solc https://github.com/ethereum/solidity/releases/download/v0.5.11/solc-static-linux diff --git a/.github/workflows/echidna.yml b/.github/workflows/echidna.yml index 30d3b1e4..0fdfef43 100644 --- a/.github/workflows/echidna.yml +++ b/.github/workflows/echidna.yml @@ -14,7 +14,7 @@ jobs: tests: name: ${{ matrix.name }} continue-on-error: ${{ matrix.flaky == true }} - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 strategy: fail-fast: false matrix: