Skip to content

Commit 90cd7b0

Browse files
dependabot[bot]mxcl
authored andcommitted
Bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 6e898f4 commit 90cd7b0

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/cd.docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
mv products/linux+x86-64 products/Linux+x86_64
3939
mv products/linux+aarch64 products/Linux+arm64
4040
41-
- uses: actions/checkout@v3
41+
- uses: actions/checkout@v4
4242
with:
4343
path: src
4444

.github/workflows/cd.vx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
retag:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020
- uses: fischerscode/tagger@v0
2121
with:
2222
prefix: v

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
env:
2626
FILENAME: tea-${{ github.event.inputs.version }}
2727
steps:
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2929
with:
3030
path: ${{ env.FILENAME }}
3131
- name: clean

.github/workflows/ci.md.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
markdownlint:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- uses: nosborn/github-action-markdown-cli@v3.2.0
1818
with:
1919
config_file: .github/markdownlint.yml

.github/workflows/ci.shellcode.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: denoland/setup-deno@v1
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
- run: deno task compile
2222
- uses: actions/upload-artifact@v3
2323
with:

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- run: echo 'TMPDIR=/tmp' >> $GITHUB_ENV
2828
if: ${{ matrix.os == 'ubuntu-latest' }}
2929

30-
- uses: actions/checkout@v3
30+
- uses: actions/checkout@v4
3131
- uses: denoland/setup-deno@v1 # using ourself to install deno could compromise the tests
3232
- run: deno cache ./entrypoint.ts
3333
- run: deno task test --coverage=cov_profile

0 commit comments

Comments
 (0)