Skip to content

Commit

Permalink
ci: use actions/checkout@v4 and actions/setup-python@v5
Browse files Browse the repository at this point in the history
Use actions/checkout@v4 and actions/setup-python@v5 when checking out
and setting up the example-application repository in CI. The new
versions uses Node20 instead of the deprecated Node16.

Signed-off-by: Henrik Brix Andersen <[email protected]>
  • Loading branch information
henrikbrixandersen committed Jul 12, 2024
1 parent 17b35b9 commit 283ad2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: example-application

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

Expand Down

0 comments on commit 283ad2b

Please sign in to comment.