Skip to content

Commit 7693445

Browse files
authored
chore: Bump CI actions/cache and checkout (#319)
* chore: Bump CI actions/checkout and cache --------- Signed-off-by: Rafael Ribeiro Raposo <[email protected]>
1 parent d8c898c commit 7693445

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/boilerplate-automation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Update Boilerplate
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
1111
with:
1212
fetch-depth: "0"
1313
- name: Update Boilerplate
@@ -33,4 +33,4 @@ jobs:
3333
team-reviewers: |
3434
owners
3535
maintainers
36-
draft: false
36+
draft: false

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
build-snapshot:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
- name: Cache local Maven repository
15-
uses: actions/cache@v2
15+
uses: actions/cache@v4
1616
with:
1717
path: ~/.m2/repository
1818
key: ${{ runner.os }}-maven-prepare-release-${{ hashFiles('pom.xml') }}

.github/workflows/flyteidl-automation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Update flyteidl
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
1111
with:
1212
fetch-depth: "0"
1313
- name: Update flyteidl

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ jobs:
77
runs-on: ubuntu-latest
88
name: flytekit-java release
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
1111
with:
1212
fetch: "0"
1313

1414
# https://docs.github.com/en/actions/guides/building-and-testing-java-with-maven#caching-dependencies
1515
- name: Cache local Maven repository
16-
uses: actions/cache@v2
16+
uses: actions/cache@v4
1717
with:
1818
path: ~/.m2/repository
1919
key: ${{ runner.os }}-maven-prepare-release-${{ hashFiles('pom.xml') }}

0 commit comments

Comments
 (0)