diff --git a/.github/workflows/adf.yml b/.github/workflows/adf.yml index e96f43068..c2bb8516f 100644 --- a/.github/workflows/adf.yml +++ b/.github/workflows/adf.yml @@ -11,9 +11,9 @@ jobs: steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Set the correct Node version using nvm diff --git a/.github/workflows/mega-linter.yml b/.github/workflows/mega-linter.yml index b288922be..ba3ccaaf5 100644 --- a/.github/workflows/mega-linter.yml +++ b/.github/workflows/mega-linter.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }} fetch-depth: 0 @@ -36,7 +36,7 @@ jobs: - name: Archive production artifacts if: ${{ success() }} || ${{ failure() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: MegaLinter reports path: | @@ -45,6 +45,6 @@ jobs: - name: Upload MegaLinter scan results to GitHub Security tab if: ${{ success() }} || ${{ failure() }} - uses: github/codeql-action/upload-sarif@v2 + uses: github/codeql-action/upload-sarif@v3 with: sarif_file: 'megalinter-reports/megalinter-report.sarif'