Skip to content

Commit b5cfa97

Browse files
authored
Upgrade CI Ubuntu (#128)
* Dependabot: Automatically upgrade GitHub Actions * GitHub Actions: Update runner Ubuntu version and actions versions
1 parent cd135f0 commit b5cfa97

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ on:
1212

1313
jobs:
1414
tests:
15-
runs-on: ubuntu-18.04
15+
runs-on: ubuntu-22.04
1616
strategy:
1717
fail-fast: false
1818
matrix:
1919
type: ["slither", "manticore"]
2020
steps:
21-
- uses: actions/checkout@v1
22-
- name: Set up Python 3.6
23-
uses: actions/setup-python@v1
21+
- uses: actions/checkout@v3
22+
- name: Set up Python 3.8
23+
uses: actions/setup-python@v4
2424
with:
25-
python-version: 3.6
25+
python-version: 3.8
2626
- name: Install dependencies
2727
run: |
2828
sudo wget -O /usr/bin/solc https://github.com/ethereum/solidity/releases/download/v0.5.11/solc-static-linux

.github/workflows/echidna.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
tests:
1515
name: ${{ matrix.name }}
1616
continue-on-error: ${{ matrix.flaky == true }}
17-
runs-on: ubuntu-18.04
17+
runs-on: ubuntu-22.04
1818
strategy:
1919
fail-fast: false
2020
matrix:

0 commit comments

Comments
 (0)