From 9bf30dae5d19d9c1b9ae0d6d42e3a90e28d7c4ae Mon Sep 17 00:00:00 2001 From: div72 Date: Tue, 7 May 2024 22:37:58 +0300 Subject: [PATCH] ci: bump action versions Node.js 16 actions are deprecated by GitHub. This commit bumps major versions so that we can switch to Node.js 20 actions and get rid of the warnings. --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ad48da6b7e..b7d84e5dbb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,11 +35,11 @@ jobs: OS_NAME: linux steps: - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: current time for cache run: echo "TIMESTAMP=$(date +%s)" >> $GITHUB_ENV - name: cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ./depends/built @@ -60,11 +60,11 @@ jobs: OS_NAME: macos steps: - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: current time for cache run: echo "TIMESTAMP=$(date +%s)" >> $GITHUB_ENV - name: cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ./ci/scratch/.ccache @@ -82,9 +82,9 @@ jobs: runs-on: ubuntu-22.04 steps: - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: setup-python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.11 - name: lint