Skip to content

Commit

Permalink
[CI/github] Bump up actions
Browse files Browse the repository at this point in the history
This commit bumps up the version of the actions/checkout, actions/upload-artifact, and actions/setup-python

ONE-DCO-1.0-Signed-off-by: Hyeongseok Oh <[email protected]>
  • Loading branch information
hseok-oh committed Jul 17, 2024
1 parent b145577 commit 648e6e4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/check-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.x'

Expand All @@ -44,7 +44,7 @@ jobs:

# Upload patch file if failed
- name: Store archive
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: failure()
with:
name: format-patch
Expand All @@ -57,7 +57,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# Fetch all history and branch (default: 1)
# Require all history to get file creation date
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-pr-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# Checkout PR head commit
# Checkout Action use merge commit as default
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:

steps:
- name: 'Checkout'
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: 'Generate HTML'
uses: mattnotmitt/[email protected]
with:
doxyfile-path: 'infra/doxygen/Doxyfile'
- name: 'Tar artifact'
run: tar -zcf doxygen.tar.gz -C doxygen/html ./
- name: 'Generate artifact'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: doxygen-html
path: doxygen.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-onert-micro-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
with:
release: '12.2.Rel1' # <-- The compiler release to use
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# Checkout PR head commit
# Checkout Action use merge commit as default
Expand Down

0 comments on commit 648e6e4

Please sign in to comment.