Skip to content

Commit

Permalink
ci: Update github actions to run on Node 20
Browse files Browse the repository at this point in the history
Github is deprecating Node 16 for actions[1]. Update our workflow from
using actions/checkout@v3 to v4, which runs on Node 20.

[1] https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/

Signed-off-by: Reza Arbab <arbab@linux.ibm.com>
  • Loading branch information
rarbab committed Aug 2, 2024
1 parent e48442c commit e2c1f6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install apt dependencies
run: sudo apt-get update &&
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-builds-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
os: [ ubuntu-18.04, ubuntu-20.04, ubuntu-22.04, ubuntu-rolling, fedora39, fedora40, fedora-rawhide, docs ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Create Docker image
run: |
Expand Down

0 comments on commit e2c1f6c

Please sign in to comment.