diff --git a/.github/workflows/critical_vulnerability_scan.yml b/.github/workflows/critical_vulnerability_scan.yml index 14e7eab72f7..e1e290c91df 100644 --- a/.github/workflows/critical_vulnerability_scan.yml +++ b/.github/workflows/critical_vulnerability_scan.yml @@ -17,7 +17,7 @@ jobs: - run: tar -zxf ../build/logstash-*.tar.gz working-directory: ./scan - name: scan image - uses: anchore/scan-action@v3 + uses: anchore/scan-action@v6 with: path: "./scan" fail-build: true diff --git a/.github/workflows/gen_release_notes.yml b/.github/workflows/gen_release_notes.yml index 2f9af4b3b42..762e72c298c 100644 --- a/.github/workflows/gen_release_notes.yml +++ b/.github/workflows/gen_release_notes.yml @@ -22,7 +22,7 @@ jobs: main: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Ruby diff --git a/.github/workflows/lint_docs.yml b/.github/workflows/lint_docs.yml index 6f5153557f8..223b000ddaf 100644 --- a/.github/workflows/lint_docs.yml +++ b/.github/workflows/lint_docs.yml @@ -12,10 +12,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 16.13.2 cache: npm @@ -38,7 +38,7 @@ jobs: echo "::set-output name=LINT_RESULT::$LINT" - name: Add PR comment - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -58,7 +58,7 @@ jobs: } - name: Throw error if linter fails - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const report = `${{ steps.run_docs_lint.outputs.LINT_RESULT }}`