From 224de08437ec02d8b522603935dddf5691cc16ff Mon Sep 17 00:00:00 2001 From: Kristaps Kaupe Date: Fri, 7 Apr 2023 00:04:28 +0300 Subject: [PATCH] CI: Bump used GitHub Actions to newer versions --- .github/workflows/unittests.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/unittests.yml b/.github/workflows/unittests.yml index 2126a08..25ea7e5 100644 --- a/.github/workflows/unittests.yml +++ b/.github/workflows/unittests.yml @@ -12,14 +12,14 @@ jobs: python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Cache venv id: cache-venv - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: venv with: @@ -35,7 +35,7 @@ jobs: - name: Lint with flake8 run: ./jmvenv/bin/flake8 -v jmclient jmbase jmbitcoin jmdaemon scripts - name: Cache bitcoind - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: bitcoind with: @@ -44,7 +44,7 @@ jobs: - name: Install bitcoind run: ./test/testrunner/install_bitcoind.sh - name: Cache miniircd - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: miniircd with: