Skip to content

Commit

Permalink
actions/checkout@v2 --> actions/checkout@v3
Browse files Browse the repository at this point in the history
Addresses the following warning from GitHub Actions:
"The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, codecov/codecov-action@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
AdeelH committed Sep 22, 2023
1 parent f4e429d commit d17ef66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
DOCKER_BUILDKIT: 1
IMAGE_TYPE: ${{ matrix.image_type }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- run: df -hT

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
DOCKER_BUILDKIT: 1
IMAGE_TYPE: ${{ matrix.image_type }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- run: ./scripts/cibuild

Expand Down

0 comments on commit d17ef66

Please sign in to comment.