Skip to content

Commit

Permalink
ci: Bump checkout action (#738)
Browse files Browse the repository at this point in the history
# Motivation

During CI checks, we receive [a few
warnings](https://github.com/dfinity/ic-js/actions/runs/11493801539)
about an old version of `actions/checkout`, so we bump all the current
instances to version `actions/checkout@v4`.

![Screenshot 2024-10-24 at 08 28
23](https://github.com/user-attachments/assets/55458497-bdf5-4b54-ae8a-c5ca5914289f)
  • Loading branch information
AntonioVentilii-DFINITY authored Oct 28, 2024
1 parent 7d79676 commit e9119a3
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 e9119a3

Please sign in to comment.