Skip to content

Commit 9a8681a

Browse files
Update GH actions to versions running Node.js 20
Fixes warnings: "Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20" See also: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/
1 parent 0b75aaf commit 9a8681a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ jobs:
3636
sudo apt-get -y update
3737
sudo apt-get install libcups2-dev wamerican
3838
39-
- uses: actions/checkout@v3
39+
- uses: actions/checkout@v4
4040
- name: Set up Python ${{ matrix.python-version }}
41-
uses: actions/setup-python@v4
41+
uses: actions/setup-python@v5
4242
with:
4343
python-version: ${{ matrix.python-version }}
4444

@@ -48,7 +48,7 @@ jobs:
4848
echo "dir=$(pip cache dir)" >>$GITHUB_OUTPUT
4949
5050
- name: Cache
51-
uses: actions/cache@v3
51+
uses: actions/cache@v4
5252
with:
5353
path: ${{ steps.pip-cache.outputs.dir }}
5454
key:

0 commit comments

Comments
 (0)