Skip to content

Commit

Permalink
ci: Bump checkout action
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonioVentilii-DFINITY committed Oct 24, 2024
1 parent 7ed25cc commit b6bfec3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install didc
run: |
mkdir -p .bin
Expand All @@ -91,7 +91,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Check the protoc installer
run: ./scripts/install-protoc --help
- name: Install protoc
Expand All @@ -109,7 +109,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Build
Expand All @@ -120,7 +120,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Lint
Expand All @@ -131,7 +131,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Build
Expand All @@ -146,7 +146,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Size check
uses: andresz1/size-limit-action@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Build next version
run: ./scripts/build-next
- name: Set up npm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install Dependencies
run: npm ci
- name: Build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-ic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout ic-js
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Choose IC ref
id: choose_ic_ref
run: |
Expand All @@ -32,7 +32,7 @@ jobs:
env:
GH_TOKEN: ${{ github.token }}
- name: Checkout ic repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: dfinity/ic
ref: ${{ steps.choose_ic_ref.outputs.ic_ref }}
Expand Down

0 comments on commit b6bfec3

Please sign in to comment.