File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Specify files that shouldn't be modified by Fern
2+
3+ .github/workflows/ci.yml
Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ name: ci
33on : [push]
44jobs :
55 compile :
6- runs-on : ubuntu-20.04
6+ runs-on : ubuntu-latest
77 steps :
88 - name : Checkout repo
9- uses : actions/checkout@v3
9+ uses : actions/checkout@v4
1010 - name : Set up python
1111 uses : actions/setup-python@v4
1212 with :
@@ -19,10 +19,10 @@ jobs:
1919 - name : Compile
2020 run : poetry run mypy .
2121 test :
22- runs-on : ubuntu-20.04
22+ runs-on : ubuntu-latest
2323 steps :
2424 - name : Checkout repo
25- uses : actions/checkout@v3
25+ uses : actions/checkout@v4
2626 - name : Set up python
2727 uses : actions/setup-python@v4
2828 with :
@@ -39,10 +39,10 @@ jobs:
3939 publish :
4040 needs : [compile, test]
4141 if : github.event_name == 'push' && contains(github.ref, 'refs/tags/')
42- runs-on : ubuntu-20.04
42+ runs-on : ubuntu-latest
4343 steps :
4444 - name : Checkout repo
45- uses : actions/checkout@v3
45+ uses : actions/checkout@v4
4646 - name : Set up python
4747 uses : actions/setup-python@v4
4848 with :
You can’t perform that action at this time.
0 commit comments