Skip to content

Commit 13e2b50

Browse files
authored
updated deprecated workflow
1 parent 45512e9 commit 13e2b50

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212

1313
jobs:
1414
svg-generation:
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-22.04
1616

1717
steps:
1818
# Check out repository under $GITHUB_WORKSPACE, so the job can access it
@@ -27,7 +27,7 @@ jobs:
2727

2828
# Cache dependencies. From:
2929
# https://github.com/actions/cache/blob/master/examples.md#python---pip
30-
- uses: actions/cache@v2
30+
- uses: actions/cache@v4
3131
with:
3232
path: ~/.cache/pip
3333
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ on:
55

66
jobs:
77
test:
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-22.04
99

1010
steps:
1111
# Check out repository under $GITHUB_WORKSPACE, so the job can access it
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313

1414
# Run using Python 3.10 for consistency and aiohttp
1515
- name: Set up Python 3.10

0 commit comments

Comments
 (0)