Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-mkdocs-site.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
github.event.pull_request.user.login != 'dependabot[bot]' &&
github.event_name == 'pull_request' &&
github.ref_name != github.event.repository.default_branch
uses: stefanzweifel/git-auto-commit-action@v5.2.0
uses: stefanzweifel/git-auto-commit-action@v6.0.1
with:
branch: ${{ inputs.site-repository-branch }}
commit_message: "chore: update ${{ inputs.site-name }} site"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
github.event.pull_request.user.login != 'dependabot[bot]' &&
github.event_name == 'pull_request' &&
github.ref_name != github.event.repository.default_branch
uses: stefanzweifel/git-auto-commit-action@v5.2.0
uses: stefanzweifel/git-auto-commit-action@v6.0.1
with:
branch: "${{ github.event.pull_request.head.ref || github.head_ref || github.ref }}"
commit_message: "chore: update home-lab-docs site"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Load super-linter configuration
run: cat config/lint/super-linter.env >> "$GITHUB_ENV"
- name: Super-Linter
uses: super-linter/super-linter@v8.0.0
uses: super-linter/super-linter@v8.2.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
- name: Load super-linter fix mode configuration
run: cat config/lint/super-linter-fix-mode.env >> "$GITHUB_ENV"
- name: Super-Linter
uses: super-linter/super-linter@v8.0.0
uses: super-linter/super-linter@v8.2.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Commit and push linting fixes
Expand All @@ -85,7 +85,7 @@ jobs:
github.event_name == 'pull_request' &&
github.ref_name != github.event.repository.default_branch &&
!cancelled()
uses: stefanzweifel/git-auto-commit-action@v5.2.0
uses: stefanzweifel/git-auto-commit-action@v6.0.1
with:
branch: ${{ github.event.pull_request.head.ref || github.head_ref || github.ref }}
commit_message: "chore: fix linting issues"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
contents: write
pull-requests: write
steps:
- uses: googleapis/release-please-action@v4.2.0
- uses: googleapis/release-please-action@v4.3.0
id: release
with:
config-file: .github/release-please/release-please-config.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/renovate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
echo "Enable Renovate dry run"
echo "RENOVATE_DRY_RUN=full" >>"${GITHUB_ENV}"
- name: Self-hosted Renovate
uses: renovatebot/[email protected].7
uses: renovatebot/[email protected].14
env:
LOG_LEVEL: "debug"
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scorecard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
persist-credentials: false

- name: "Run analysis"
uses: ossf/[email protected].2
uses: ossf/[email protected].3
with:
results_file: results.sarif
results_format: sarif
Expand All @@ -49,6 +49,6 @@ jobs:

# Upload the results to GitHub's code scanning dashboard.
- name: "Upload to code-scanning"
uses: github/codeql-action/upload-sarif@v3.29.9
uses: github/codeql-action/upload-sarif@v3.30.6
with:
sarif_file: results.sarif
Loading