diff --git a/.github/workflows/detekt.yml b/.github/workflows/detekt.yml index fdfcc42..6bce4d1 100644 --- a/.github/workflows/detekt.yml +++ b/.github/workflows/detekt.yml @@ -44,7 +44,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # Gets the download URL associated with the $DETEKT_RELEASE_TAG - name: Get Detekt download URL @@ -110,7 +110,7 @@ jobs: )" > ${{ github.workspace }}/detekt.sarif.json # Uploads results to GitHub repository using the upload-sarif action - - uses: github/codeql-action/upload-sarif@v2 + - uses: github/codeql-action/upload-sarif@v3 with: # Path to SARIF file relative to the root of the repository sarif_file: ${{ github.workspace }}/detekt.sarif.json diff --git a/.github/workflows/mobsf.yml b/.github/workflows/mobsf.yml index f69b763..0e5b0e5 100644 --- a/.github/workflows/mobsf.yml +++ b/.github/workflows/mobsf.yml @@ -28,19 +28,19 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup python - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: python-version: 3.8 - name: Run mobsfscan - uses: MobSF/mobsfscan@a60d10a83af68e23e0b30611c6515da604f06f65 + uses: MobSF/mobsfscan@e29e85c36fa1aa950d7f1b1064345d94a70b2a28 with: args: . --sarif --output results.sarif || true - name: Upload mobsfscan report - uses: github/codeql-action/upload-sarif@v2 + uses: github/codeql-action/upload-sarif@v3 with: sarif_file: results.sarif