Skip to content

Commit

Permalink
Merge pull request cdapio#254 from cloudsufi/upgradeGithubActions
Browse files Browse the repository at this point in the history
upgrade github actions v3 to v4
  • Loading branch information
itsankit-google authored Dec 2, 2024
2 parents 2069093 + ccead26 commit da76ba3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ jobs:
CDAP_GPG_PRIVATE_KEY:cdapio-github-builds/CDAP_GPG_PRIVATE_KEY
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: e2e
ref: ${{ inputs.ref }}

- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-cdap-e2e-framework-${{ hashFiles('**/pom.xml') }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ jobs:
outputs:
version: ${{ steps.version.outputs.version }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: data-integrations/google-cloud
path: plugin
- name: Checkout e2e test repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: e2e
- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ github.workflow }}-${{ hashFiles('**/pom.xml') }}
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Run required e2e tests
run: python3 e2e/src/main/scripts/run_e2e_test.py --testRunner TestRunnerRequired.java --framework yes
- name: Upload debug files
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: Debug files
Expand Down

0 comments on commit da76ba3

Please sign in to comment.