From 15ad966170bb171756acf40cb2ed3e13dc48aae4 Mon Sep 17 00:00:00 2001 From: Javy de Koning Date: Fri, 29 Mar 2024 15:52:27 +0100 Subject: [PATCH 1/2] Version bumping GH actions --- .github/workflows/adf.yml | 2 +- .github/workflows/mega-linter.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/adf.yml b/.github/workflows/adf.yml index e96f43068..0a72fc1e0 100644 --- a/.github/workflows/adf.yml +++ b/.github/workflows/adf.yml @@ -11,7 +11,7 @@ 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 with: 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' From f74021e7f84268aeb5e4d6bd40905037426e9214 Mon Sep 17 00:00:00 2001 From: Javy de Koning Date: Fri, 29 Mar 2024 16:43:36 +0100 Subject: [PATCH 2/2] Version bumping GH action "setup-python" --- .github/workflows/adf.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/adf.yml b/.github/workflows/adf.yml index 0a72fc1e0..c2bb8516f 100644 --- a/.github/workflows/adf.yml +++ b/.github/workflows/adf.yml @@ -13,7 +13,7 @@ jobs: - name: Checkout Repo 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