Skip to content

Commit

Permalink
chore(deps): update actions/checkout action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jan 26, 2024
1 parent db2bb0d commit edc01e9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions workflow-templates/deploy-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
outputs:
results: "${{ steps.deploy_preview.outputs.urls }}"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: "Enable yarn cache"
uses: c-hive/gha-yarn-cache@v2 # using cache
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"

- name: "Checkout zksync-test-ui repository"
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: matter-labs/zksync-test-ui
ref: main
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
if: ${{ github.event.repository.full_name == github.repository }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: "${{ github.event.inputs.ref }}"
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
if: ${{ github.event.repository.full_name == github.repository }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: "Enable yarn cache"
uses: c-hive/gha-yarn-cache@v2 # using cache

Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
if: ${{ github.event.repository.full_name == github.repository }} && {{ !contains(github.event.head_commit.message, "skip ci") }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
# Whether to configure the token or SSH key with the local git config
Expand Down

0 comments on commit edc01e9

Please sign in to comment.