diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index a2af73b..92519e8 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: # We must fetch at least the immediate parents so that if this is # a pull request then we can checkout the head. diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml index bfdf985..3c5e332 100644 --- a/.github/workflows/github-release.yml +++ b/.github/workflows/github-release.yml @@ -17,7 +17,7 @@ jobs: contents: write steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Create Release id: create_release uses: actions/create-release@v1 diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 8e5c812..0f08bf7 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -18,7 +18,7 @@ jobs: name: Node CI runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-node@v6 with: node-version-file: '.nvmrc' diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index ec451b4..ddfd083 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -16,7 +16,7 @@ jobs: id-token: write steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: lfs: true submodules: true diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml index acbba03..e93bb0f 100644 --- a/.github/workflows/super-linter.yml +++ b/.github/workflows/super-linter.yml @@ -57,7 +57,7 @@ jobs: # Checkout the code base # ########################## - name: Checkout Code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: # super-linter needs the full git history to get the # list of files that changed across commits @@ -67,7 +67,7 @@ jobs: # Run Linter against code base # ################################ - name: Lint Code Base - uses: super-linter/super-linter@v8.6.0 + uses: super-linter/super-linter@v8.7.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # DEFAULT_BRANCH: master