diff --git a/.github/workflows/boilerplate-automation.yml b/.github/workflows/boilerplate-automation.yml index c6c8a2a53..ece44d272 100644 --- a/.github/workflows/boilerplate-automation.yml +++ b/.github/workflows/boilerplate-automation.yml @@ -7,7 +7,7 @@ jobs: name: Update Boilerplate runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: "0" - name: Update Boilerplate @@ -33,4 +33,4 @@ jobs: team-reviewers: | owners maintainers - draft: false \ No newline at end of file + draft: false diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index b66cef7a6..22be593f5 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -10,9 +10,9 @@ jobs: build-snapshot: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Cache local Maven repository - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-prepare-release-${{ hashFiles('pom.xml') }} diff --git a/.github/workflows/flyteidl-automation.yml b/.github/workflows/flyteidl-automation.yml index eefff9f95..b93a446f3 100644 --- a/.github/workflows/flyteidl-automation.yml +++ b/.github/workflows/flyteidl-automation.yml @@ -7,7 +7,7 @@ jobs: name: Update flyteidl runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: "0" - name: Update flyteidl diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4eabc40bf..0559a6a53 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -7,13 +7,13 @@ jobs: runs-on: ubuntu-latest name: flytekit-java release steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch: "0" # https://docs.github.com/en/actions/guides/building-and-testing-java-with-maven#caching-dependencies - name: Cache local Maven repository - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-prepare-release-${{ hashFiles('pom.xml') }}