freeCodeCamp / how-to-contribute-to-open-source

A guide to contributing to open source
Creative Commons Attribution Share Alike 4.0 International
8.6k stars 1.79k forks source link

Update checkout GitHub Action version #951

Closed erictleung closed 4 months ago

erictleung commented 5 months ago

In the workflow files here https://github.com/freeCodeCamp/how-to-contribute-to-open-source/tree/main/.github/workflows, update the actions/checkout@v2 to actions/checkout@v4

For language-check.yml

    steps:
    - name: Checkout repository
-       uses: actions/checkout@v2
+       uses: actions/checkout@v4

For test.yml

    steps:
      - name: Checkout Source Files
-         uses: actions/checkout@v2
+         uses: actions/checkout@v4
        with:
          fetch-depth: 0