Skip to content

Commit b291a92

Browse files
chore(deps): update github-actions
1 parent bf5c79a commit b291a92

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ permissions: read-all
1414

1515
jobs:
1616
build:
17-
runs-on: ubuntu-22.04
17+
runs-on: ubuntu-24.04
1818
permissions:
1919
# to create releases
2020
contents: write
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
23+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2424
with:
2525
fetch-depth: 0
2626

2727
- name: Install .NET
28-
uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4.0.0
28+
uses: actions/setup-dotnet@d4c94342e560b34958eacfc5d055d21461ed1c5d # v5.0.0
2929
with:
3030
dotnet-version: "8.0.x"
3131

.github/workflows/codeql.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions: read-all
1313
jobs:
1414
analyze:
1515
name: Analyze
16-
runs-on: ubuntu-22.04
16+
runs-on: ubuntu-24.04
1717
permissions:
1818
security-events: write
1919
strategy:
@@ -22,15 +22,15 @@ jobs:
2222
language: ["csharp"]
2323
steps:
2424
- name: Checkout repository
25-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
25+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2626

2727
- name: Initialize CodeQL
28-
uses: github/codeql-action/init@d39d31e687223d841ef683f52467bd88e9b21c14 # v3.25.3
28+
uses: github/codeql-action/init@5fe9434cd24fe243e33e7f3305f8a5b519b70280 # v4.31.1
2929
with:
3030
languages: ${{ matrix.language }}
3131

3232
- name: Autobuild
33-
uses: github/codeql-action/autobuild@d39d31e687223d841ef683f52467bd88e9b21c14 # v3.25.3
33+
uses: github/codeql-action/autobuild@5fe9434cd24fe243e33e7f3305f8a5b519b70280 # v4.31.1
3434

3535
- name: Perform CodeQL Analysis
36-
uses: github/codeql-action/analyze@d39d31e687223d841ef683f52467bd88e9b21c14 # v3.25.3
36+
uses: github/codeql-action/analyze@5fe9434cd24fe243e33e7f3305f8a5b519b70280 # v4.31.1

.github/workflows/mega-lint.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,29 +24,29 @@ concurrency:
2424
jobs:
2525
megalinter:
2626
name: MegaLinter
27-
runs-on: ubuntu-22.04
27+
runs-on: ubuntu-24.04
2828
if: ${{ github.event_name == 'pull_request' }}
2929
permissions:
3030
issues: write
3131
pull-requests: write
3232
steps:
3333
- name: Checkout Code
34-
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
34+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3535

3636
# MegaLinter
3737
- name: MegaLinter
3838
id: ml
3939
# You can override MegaLinter flavor used to have faster performances
4040
# More info at https://megalinter.io/latest/flavors/
41-
uses: oxsecurity/megalinter@03986e6993ccf699a22451118520680b438e7d2a # v7.11.1
41+
uses: oxsecurity/megalinter@62c799d895af9bcbca5eacfebca29d527f125a57 # v9.1.0
4242
env:
4343
VALIDATE_ALL_CODEBASE: "true"
4444
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4545

4646
# Upload MegaLinter artifacts
4747
- name: Archive production artifacts
4848
if: ${{ always() }}
49-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
49+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
5050
with:
5151
name: MegaLinter reports
5252
path: |

0 commit comments

Comments
 (0)