Skip to content

Commit

Permalink
Update CI actions to use node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
delatrie committed Apr 1, 2024
1 parent c6f146a commit 5cd6d6c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:

- name: Cache commons
id: commons
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: dist/
key: commons-${{ github.sha }}
Expand All @@ -89,7 +89,7 @@ jobs:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.12"

Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:

- name: Get commons from cache
id: commons
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: dist/
key: commons-${{ github.sha }}
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:

- name: Get commons from cache
id: commons
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: dist/
key: commons-${{ github.sha }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.x'

Expand Down

0 comments on commit 5cd6d6c

Please sign in to comment.