Skip to content
This repository was archived by the owner on Jun 22, 2026. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/secrets_scanner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
with:
fetch-depth: 0
- name: TruffleHog OSS
Expand Down
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@v6

- 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@v6
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@v6
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@v6
- 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@v6
with:
fetch-depth: 0
# Whether to configure the token or SSH key with the local git config
Expand Down
Loading