Skip to content

Commit 200969d

Browse files
committed
ci: bump action versions
* Also remove auto-build step for CodeQL workflow
1 parent 5605054 commit 200969d

5 files changed

Lines changed: 11 additions & 16 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v2
38+
uses: actions/checkout@v6
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@v1
42+
uses: github/codeql-action/init@v4
4343
with:
4444
languages: ${{ matrix.language }}
4545
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -48,11 +48,6 @@ jobs:
4848
# queries: ./path/to/local/query, your-org/your-repo/queries@main
4949
config-file: ./.github/codeql/codeql-config.yml
5050

51-
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
52-
# If this step fails, then you should remove it and run the build manually (see below)
53-
- name: Autobuild
54-
uses: github/codeql-action/autobuild@v1
55-
5651
# ℹ️ Command-line programs to run using the OS shell.
5752
# 📚 https://git.io/JvXDl
5853

@@ -65,4 +60,4 @@ jobs:
6560
# make release
6661

6762
- name: Perform CodeQL Analysis
68-
uses: github/codeql-action/analyze@v1
63+
uses: github/codeql-action/analyze@v4

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v6
1515
- name: Setup NodeJS LTS
16-
uses: actions/setup-node@v1
16+
uses: actions/setup-node@v6
1717
with:
1818
node-version: '10.x'
1919
- name: Setup Angular problem matchers
2020
uses: EdricChan03/angular-problem-matchers-action@v0.0.0
2121
- name: Cache node modules
22-
uses: actions/cache@v2
22+
uses: actions/cache@v5
2323
id: node_modules_cache
2424
with:
2525
path: node_modules

.github/workflows/pull-request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v6
1515
- name: Setup NodeJS LTS
16-
uses: actions/setup-node@v1
16+
uses: actions/setup-node@v6
1717
with:
1818
node-version: '10.x'
1919
- name: Cache node modules
20-
uses: actions/cache@v2
20+
uses: actions/cache@v5
2121
id: node_modules_cache
2222
with:
2323
path: node_modules

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/stale@v3
13+
- uses: actions/stale@v10
1414
with:
1515
repo-token: ${{ secrets.GITHUB_TOKEN }}
1616
# TODO: Add a link to learn more about why it should be closed

.github/workflows/triage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/github-script@v2
13+
- uses: actions/github-script@v8
1414
with:
1515
github-token: ${{ github.token }}
1616
script: |

0 commit comments

Comments
 (0)