Skip to content

Commit

Permalink
build(deps): bump github/super-linter from 5 to 7 in the dependencies…
Browse files Browse the repository at this point in the history
… 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>
  • Loading branch information
dependabot[bot] and rlespinasse authored Oct 26, 2024
1 parent 27d97cb commit 63a2ec3
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 9 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Lint Code Base

on: pull_request

permissions: read-all

jobs:
build:
name: Lint Code Base
Expand All @@ -15,13 +17,16 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v4
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

- name: Lint Code Base
uses: github/super-linter@v5
uses: github/super-linter@v7
env:
VALIDATE_ALL_CODEBASE: false
VALIDATE_MARKDOWN_PRETTIER: false
VALIDATE_YAML_PRETTIER: false
DEFAULT_BRANCH: v1.x
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

20 changes: 14 additions & 6 deletions .github/workflows/shortify-git-revision.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
---
name: Shortify Git Revision
on:
push:
branches:
- v1.x
pull_request:
permissions: read-all
jobs:
os-testing:
strategy:
Expand Down Expand Up @@ -200,19 +202,25 @@ jobs:
[[ "${{ env.ROOT_COMMIT_SHORT }}" == "${{ steps.short-on-error.outputs.short }}" ]]
shell: bash


release:
runs-on: ubuntu-latest
concurrency:
group: release-${{ github.ref }}
needs:
- os-testing
- error-os-testing
permissions:
contents: write
issues: write
id-token: write
packages: write
concurrency:
group: release-${{ github.ref }}
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
persist-credentials: false

# Release
- name: Release this GitHub Action
- name: Release That
uses: rlespinasse/release-that@v1
with:
github-token: ${{ secrets.GH_TOKEN }}

0 comments on commit 63a2ec3

Please sign in to comment.