Skip to content

Commit

Permalink
Updated Actions to the latest version.
Browse files Browse the repository at this point in the history
  • Loading branch information
kobayasy committed Feb 2, 2024
1 parent ba0d031 commit b4abd84
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# .github/workflows/build-linux.yml
# Last modified: 29-Mar-2023 (kobayasy)
# Last modified: 03-Feb-2024 (kobayasy)

name: Linux

Expand All @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build and install
run: |
mkdir build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# .github/workflows/build-macos.yml
# Last modified: 29-Mar-2023 (kobayasy)
# Last modified: 03-Feb-2024 (kobayasy)

name: macOS

Expand All @@ -14,7 +14,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build and install
run: |
mkdir build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# .github/workflows/build-windows.yml
# Last modified: 29-Mar-2023 (kobayasy)
# Last modified: 03-Feb-2024 (kobayasy)

name: Windows

Expand All @@ -21,7 +21,7 @@ jobs:
with:
install: make gcc ncurses-devel
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build and install
run: |
mkdir build
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# .github/workflows/codeql-analysis.yml
# Last modified: 21-Jan-2023 (kobayasy)
# Last modified: 03-Feb-2024 (kobayasy)

name: SAST

Expand All @@ -23,12 +23,12 @@ jobs:
- cpp
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v2
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# .github/workflows/release.yml
# Last modified: 03-Feb-2023 (kobayasy)
# Last modified: 03-Feb-2024 (kobayasy)

name: Release

Expand All @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Release
id: release
uses: actions/create-release@v1
Expand Down

0 comments on commit b4abd84

Please sign in to comment.