From 5efb0b2e297978fc963cb08b0b150a778b4b9359 Mon Sep 17 00:00:00 2001 From: Badlop Date: Tue, 12 Dec 2023 18:30:39 +0100 Subject: [PATCH] Bump actions/checkout to v4 as recommended by GitHub Actions --- .github/workflows/ci.yml | 4 ++-- .github/workflows/hexpm-release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df2f07c..04152fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: container: image: erlang:${{ matrix.otp }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - run: ./configure - run: make - run: rebar3 compile @@ -27,7 +27,7 @@ jobs: needs: [tests] runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - run: ./configure --enable-gcov - run: rebar3 compile - run: rebar3 eunit -v diff --git a/.github/workflows/hexpm-release.yml b/.github/workflows/hexpm-release.yml index e5963df..37c47a2 100644 --- a/.github/workflows/hexpm-release.yml +++ b/.github/workflows/hexpm-release.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup rebar3 hex run: |