Skip to content

Commit

Permalink
ci: Update to actions/checkout@v4. (#1142)
Browse files Browse the repository at this point in the history
This fixes annotations on task runs like the following:

    The following actions uses node12 which is deprecated and will be forced
    to run on node16: actions/checkout@v2. For more info:
    https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
  • Loading branch information
waywardmonkeys committed Jan 17, 2024
1 parent 77b2f4f commit f1a494c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
run:
working-directory: build
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Create build directory
run: mkdir -p build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmake_find_package.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
matrix:
os: [ ubuntu-latest, macos-latest ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: lukka/get-cmake@latest
with:
cmakeVersion: 3.14.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ios.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
run:
working-directory: build
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Create build directory
run: mkdir -p build
Expand Down

0 comments on commit f1a494c

Please sign in to comment.