Skip to content

Commit

Permalink
[YUNIKORN-2340] Upgrade actions versions in Github Action workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
chenyulin0719 committed Jan 27, 2024
1 parent 12c3908 commit c337de0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version-file: .go_version
- name: Check license
Expand Down Expand Up @@ -43,11 +43,11 @@ jobs:
plugin: ['', '--plugin']
steps:
- name: Checkout source code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version-file: .go_version
- name: Set hugepage
Expand All @@ -57,7 +57,7 @@ jobs:
sudo sysctl -a | grep vm.nr_hugepages
- name: Cache and Restore e2e required tools
id: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
tools
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version-file: .go_version
- name: Unit tests
Expand Down

0 comments on commit c337de0

Please sign in to comment.