diff --git a/.github/workflows/add_language.yml b/.github/workflows/add_language.yml index e47348362d7..142cf761262 100644 --- a/.github/workflows/add_language.yml +++ b/.github/workflows/add_language.yml @@ -19,13 +19,13 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: persist-credentials: true ref: master path: 'rspec' - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 with: python-version: '3.9' diff --git a/.github/workflows/create_new_rspec.yml b/.github/workflows/create_new_rspec.yml index 2ee6f3aa76f..79dbaa2344f 100644 --- a/.github/workflows/create_new_rspec.yml +++ b/.github/workflows/create_new_rspec.yml @@ -16,13 +16,13 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: persist-credentials: true ref: master path: 'rspec' - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 with: python-version: '3.9' diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4b50c934da4..2869f01e9ba 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,7 +13,7 @@ jobs: contents: write # Get the contents of open new-rule PRs, the 'master'; write to 'gh-pages' branch steps: - name: Checkout 🛎️ - uses: actions/checkout@v2 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly. + uses: actions/checkout@v4 # If you're using actions/checkout you must set persist-credentials to false in most cases for the deployment to work correctly. with: persist-credentials: false ref: 'master' diff --git a/.github/workflows/update_coverage.yml b/.github/workflows/update_coverage.yml index 71023a185d6..d31b1627618 100644 --- a/.github/workflows/update_coverage.yml +++ b/.github/workflows/update_coverage.yml @@ -10,14 +10,14 @@ jobs: TMP_BRANCH: temporary/coverage_update steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: persist-credentials: true ref: master path: 'rspec' token: ${{ secrets.COVERAGE_GITHUB_TOKEN }} - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 with: python-version: '3.9'