Skip to content

Commit

Permalink
MAINT(ci): Update all GitHub actions to latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzmbrzl committed Jul 6, 2024
1 parent 1048e9c commit b4796a9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/backport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Backport Action
uses: sqren/[email protected]
uses: sorenlouv/[email protected]
with:
github_token: ${{ secrets.BACKPORT_TOKEN }}
auto_backport_label_prefix: auto-backport-to-
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/code-ql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ jobs:
contents: read

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: 'recursive'

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: python, cpp

Expand All @@ -66,4 +66,4 @@ jobs:
shell: bash

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
6 changes: 3 additions & 3 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
run: sudo apt install python3
shell: bash

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
# Assume that there are not >200 new commits that need checking
fetch-depth: 200
Expand Down Expand Up @@ -44,8 +44,8 @@ jobs:
shell: bash

- name: Check code formatting
uses: jidicula/clang-format-action@v3.5.2
uses: jidicula/clang-format-action@v4.13.0
with:
clang-format-version: '10'
check-path: '.'
exclude-regex: '(3rdparty/*|build/*)'
exclude-regex: '(\\.git/.*|3rdparty/.*|build/.*|.*proto$)'
2 changes: 1 addition & 1 deletion .github/workflows/release_dispatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Dispatch release to mumble-docker repo"
uses: peter-evans/repository-dispatch@v2
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.DOCKER_REPO_ACCCESS_TOKEN }}
event-type: new_release
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/stale_issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
permissions:
issues: write
steps:
- uses: actions/stale@v5
- uses: actions/stale@v9
with:
days-before-issue-stale: 14
days-before-issue-close: 7
Expand All @@ -31,7 +31,7 @@ jobs:
permissions:
issues: write
steps:
- uses: actions/stale@v5
- uses: actions/stale@v9
with:
days-before-issue-stale: 4
days-before-issue-close: 3
Expand Down

0 comments on commit b4796a9

Please sign in to comment.