Skip to content

Commit d4c9ecd

Browse files
sutaakaropenshift-merge-robot
authored andcommitted
Update GitHub actions to avoid using deprecated actions
1 parent 95a9935 commit d4c9ecd

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/precommit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
volumes:
2222
- /cache
2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3
2525

2626
- name: Activate cache
27-
uses: actions/cache@v2
27+
uses: actions/cache@v3
2828
with:
2929
path: /cache
3030
key: ${{ runner.os }}-cache-${{ hashFiles('**/go.sum', '.pre-commit-config.yaml') }}

.github/workflows/tag-and-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v3
2121

2222
- name: Activate cache
23-
uses: actions/cache@v2
23+
uses: actions/cache@v3
2424
with:
2525
path: /cache
2626
key: ${{ runner.os }}-cache-${{ hashFiles('**/go.sum', '.pre-commit-config.yaml') }}

.github/workflows/unit_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
volumes:
2323
- /cache
2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v3
2626

2727
- name: Activate cache
28-
uses: actions/cache@v2
28+
uses: actions/cache@v3
2929
with:
3030
path: /cache
3131
key: ${{ runner.os }}-cache-${{ hashFiles('**/go.sum', '.pre-commit-config.yaml') }}

0 commit comments

Comments
 (0)