Skip to content

Commit

Permalink
update GitHub Actions to use actions/checkout@v4
Browse files Browse the repository at this point in the history
* Also enable manual trigger.
  • Loading branch information
pbatard committed Sep 5, 2023
1 parent b9adb76 commit e97c8f5
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: CodeQL

on:
workflow_dispatch:
branches: [master]
push:
branches: [master]
pull_request:
Expand All @@ -20,7 +22,7 @@ jobs:

steps:
- name: Check out repository and submodules
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Coverity (MSVC with gnu-efi) build

on:
workflow_dispatch:
branches: [master]
push:
branches: [master]

Expand All @@ -16,7 +18,7 @@ jobs:

steps:
- name: Checkout repository and submodules
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Linux (gcc with EDK2) build

on: [push, pull_request]
on:
workflow_dispatch:
branches: [master]
push:
branches: [master]
pull_request:
branches: [master]

env:
BUILD_TYPE: RELEASE
Expand Down Expand Up @@ -33,7 +39,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Windows (MSVC with gnu-efi) build

Check failure on line 1 in .github/workflows/windows.yml

View workflow job for this annotation

GitHub Actions / Windows-VS2019-Build (x64)

.github/workflows/windows.yml#L1

This run was manually canceled.

Check failure on line 1 in .github/workflows/windows.yml

View workflow job for this annotation

GitHub Actions / Windows-VS2019-Build (ia32)

.github/workflows/windows.yml#L1

This run was manually canceled.

Check failure on line 1 in .github/workflows/windows.yml

View workflow job for this annotation

GitHub Actions / Windows-VS2019-Build (aa64)

.github/workflows/windows.yml#L1

This run was manually canceled.

Check failure on line 1 in .github/workflows/windows.yml

View workflow job for this annotation

GitHub Actions / Windows-VS2019-Build (arm)

.github/workflows/windows.yml#L1

This run was manually canceled.

on:
workflow_dispatch:
branches: [master]
push:
branches: [master]
pull_request:
Expand All @@ -20,7 +22,7 @@ jobs:

steps:
- name: Check out repository and submodules
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
Expand Down

0 comments on commit e97c8f5

Please sign in to comment.