Skip to content

Commit f124ab9

Browse files
chore(deps): update actions/checkout action to v4 (#44)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 4cb5084 commit f124ab9

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Download Earthly v0.8.12.
1818
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.8.12/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'"
1919
- name: Checkout code.
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121
- name: Check formatting.
2222
run: earthly --ci +check-${{ matrix.language }}-formatting
2323
linting:
@@ -30,7 +30,7 @@ jobs:
3030
- name: Download Earthly v0.8.12.
3131
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.8.12/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'"
3232
- name: Checkout code.
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434
- name: Check linting.
3535
run: earthly --ci +check-${{ matrix.language }}-linting
3636
compile:
@@ -40,7 +40,7 @@ jobs:
4040
- name: Download Earthly v0.8.12.
4141
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.8.12/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'"
4242
- name: Checkout code.
43-
uses: actions/checkout@v3
43+
uses: actions/checkout@v4
4444
- name: Compile.
4545
run: earthly --ci +compile
4646
unit-test:
@@ -50,6 +50,6 @@ jobs:
5050
- name: Download Earthly v0.8.12.
5151
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.8.12/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'"
5252
- name: Checkout code.
53-
uses: actions/checkout@v3
53+
uses: actions/checkout@v4
5454
- name: Unit test.
5555
run: earthly --ci +unit-test

.github/workflows/conventional-commits.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Download Earthly v0.8.12.
1515
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.8.12/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'"
1616
- name: Checkout code.
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818
with:
1919
ref: ${{ github.event.pull_request.head.sha }}
2020
fetch-depth: 0

.github/workflows/git-history.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Download Earthly v0.8.12.
1515
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.8.12/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'"
1616
- name: Checkout code.
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818
with:
1919
ref: ${{ github.event.pull_request.head.sha }}
2020
fetch-depth: 0

.github/workflows/github-actions-workflows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Download Earthly v0.8.12.
1515
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.8.12/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'"
1616
- name: Checkout code.
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818
- name: Check GitHub Actions workflows linting.
1919
run: earthly +check-github-actions-workflows-linting
2020
formatting:
@@ -24,6 +24,6 @@ jobs:
2424
- name: Download Earthly v0.8.12.
2525
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.8.12/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'"
2626
- name: Checkout code.
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828
- name: Check formatting.
2929
run: earthly +check-yaml-formatting

0 commit comments

Comments
 (0)