Skip to content

Commit

Permalink
action: upgrade action versions
Browse files Browse the repository at this point in the history
Upgrade following github action script versions
- `actions/*@v3` -> `actions/*@v4`
- `github/codeql-action/*@v2` -> `github/codeql-actions/*@v3`

Signed-off-by: Inho Oh <webispy@gmail.com>
  • Loading branch information
webispy authored and kimhyungrok committed Jan 31, 2024
1 parent f4b9eb0 commit c02f9e5
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,18 @@ jobs:
rapidjson-dev libnugu-epd-dev libnugu-kwd-dev
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: 'cpp'

- 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
2 changes: 1 addition & 1 deletion .github/workflows/doxygen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Generate doxygen
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
run: echo "Comment - ${{ github.event.inputs.comment }}"

- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Homebrew setup
run: brew install cmake jsoncpp curl openssl gstreamer gst-plugins-base pkg-config
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
]
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
Expand Down Expand Up @@ -67,8 +67,8 @@ jobs:
cp *.deb /tmp/result/
- name: Build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: DEB packages
name: deb-${{ matrix.target }}
path: /tmp/result/

8 changes: 4 additions & 4 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
echo "ref = ${{ github.ref }}"
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
Expand Down Expand Up @@ -63,9 +63,9 @@ jobs:
cp *.deb /tmp/result/
- name: Build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: DEB packages
name: deb-${{ matrix.target }}
path: /tmp/result/

- name: Upload artifact to release
Expand All @@ -82,7 +82,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Prepare
run: |
# Use only njson submodule
Expand Down

0 comments on commit c02f9e5

Please sign in to comment.