Skip to content

Commit

Permalink
ci: bump action versions
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
div72 committed May 7, 2024
1 parent 5ac7984 commit 9bf30da
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 9bf30da

Please sign in to comment.