build(deps): bump github/super-linter from 5 to 7 in the dependencies group across 1 directory (#26)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Romain Lespinasse <romain.lespinasse@gmail.com>
This commit is contained in:
dependabot[bot]
2024-10-27 01:14:41 +02:00
committed by GitHub
parent 27d97cb8a5
commit 63a2ec32da
2 changed files with 22 additions and 9 deletions

View File

@@ -3,6 +3,8 @@ name: Lint Code Base
on: pull_request on: pull_request
permissions: read-all
jobs: jobs:
build: build:
name: Lint Code Base name: Lint Code Base
@@ -15,13 +17,16 @@ jobs:
- name: Checkout Code - name: Checkout Code
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
# Full git history is needed to get a proper list of changed files within `super-linter` # Full git history is needed to get a proper
# list of changed files within `super-linter`
fetch-depth: 0 fetch-depth: 0
- name: Lint Code Base - name: Lint Code Base
uses: github/super-linter@v5 uses: github/super-linter@v7
env: env:
VALIDATE_ALL_CODEBASE: false VALIDATE_ALL_CODEBASE: false
VALIDATE_MARKDOWN_PRETTIER: false
VALIDATE_YAML_PRETTIER: false
DEFAULT_BRANCH: v1.x DEFAULT_BRANCH: v1.x
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@@ -1,9 +1,11 @@
---
name: Shortify Git Revision name: Shortify Git Revision
on: on:
push: push:
branches: branches:
- v1.x - v1.x
pull_request: pull_request:
permissions: read-all
jobs: jobs:
os-testing: os-testing:
strategy: strategy:
@@ -200,19 +202,25 @@ jobs:
[[ "${{ env.ROOT_COMMIT_SHORT }}" == "${{ steps.short-on-error.outputs.short }}" ]] [[ "${{ env.ROOT_COMMIT_SHORT }}" == "${{ steps.short-on-error.outputs.short }}" ]]
shell: bash shell: bash
release: release:
runs-on: ubuntu-latest runs-on: ubuntu-latest
concurrency:
group: release-${{ github.ref }}
needs: needs:
- os-testing - os-testing
- error-os-testing - error-os-testing
permissions:
contents: write
issues: write
id-token: write
packages: write
concurrency:
group: release-${{ github.ref }}
steps: steps:
- name: Checkout - uses: actions/checkout@v4
uses: actions/checkout@v4 with:
persist-credentials: false
# Release - name: Release That
- name: Release this GitHub Action
uses: rlespinasse/release-that@v1 uses: rlespinasse/release-that@v1
with: with:
github-token: ${{ secrets.GH_TOKEN }} github-token: ${{ secrets.GH_TOKEN }}