diff --git a/.github/workflows/codeowners-merge.yml b/.github/workflows/codeowners-merge.yml index 2e272dd0bb9..8b9627c170e 100644 --- a/.github/workflows/codeowners-merge.yml +++ b/.github/workflows/codeowners-merge.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: 'actions/checkout@v1' + - uses: 'actions/checkout@v4' - name: 'Run Codeowners merge check' uses: 'OSS-Docs-Tools/code-owner-self-merge@1.6.5' env: diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 78f1f372b0b..c5cacf38c63 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -32,7 +32,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -45,7 +45,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v2 + uses: github/codeql-action/autobuild@v3 # ℹī¸ Command-line programs to run using the OS shell. # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun @@ -58,4 +58,4 @@ jobs: # ./location_of_script_within_repo/buildscript.sh - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 551ecab1b99..8e0b8a63410 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -6,7 +6,7 @@ jobs: triage: runs-on: ubuntu-latest steps: - - uses: actions/labeler@v4 + - uses: actions/labeler@v5 with: repo-token: '${{ secrets.GITHUB_TOKEN }}' sync-labels: true diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 29ba9409be5..d298f8ce520 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -14,7 +14,7 @@ jobs: # enable auto-fixes for formatting violations. Still we still want to run # our own GitHub action, just in case the external service becomes # unavailable. - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: '3.11' - name: Install pre-commit diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 891d6b405f4..0a16e086b2f 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest if: github.repository_owner == 'SchemaStore' steps: - - uses: actions/stale@v8 + - uses: actions/stale@v9 with: stale-pr-message: 'This PR is stale because it has been open 60 days with no activity. Comment or this will be closed in 7 days.' close-pr-message: 'This PR was closed because it has been stalled for 7 days with no activity.'