Skip to content

Commit

Permalink
chore(deps): bump actions/checkout from 4.1.1 to 4.1.5
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.5.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v4.1.1...v4.1.5)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and joachimvh committed May 14, 2024
1 parent 386babf commit f244b28
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cth-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
with:
node-version: 16.x
- name: Check out the project
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.5
with:
ref: ${{ inputs.branch || github.ref }}
- name: Install dependencies and run build scripts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
tags: ${{ steps.meta-main.outputs.tags || steps.meta-version.outputs.tags }}
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.5
- if: startsWith(github.ref, 'refs/tags/v') || (github.ref == 'refs/heads/main')
name: Docker meta edge and version tag
id: meta-main
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.5
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
outputs:
major: ${{ steps.tagged_version.outputs.major || steps.current_version.outputs.major }}
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.5
- uses: actions/setup-node@v4
with:
node-version: 16.x
Expand All @@ -43,7 +43,7 @@ jobs:
runs-on: ubuntu-latest
needs: mkdocs-prep
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.5
- uses: actions/setup-python@v5
with:
python-version: 3.x
Expand All @@ -62,7 +62,7 @@ jobs:
needs: [mkdocs-prep, mkdocs]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.5
- uses: actions/setup-node@v4
with:
node-version: 16.x
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/npm-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.5
- uses: actions/setup-node@v4
with:
node-version: 16.x
Expand Down Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Ensure line endings are consistent
run: git config --global core.autocrlf input
- name: Check out repository
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.5
- name: Install dependencies and run build scripts
run: npm ci
- name: Type-check tests
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Check out repository
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.5
- name: Install dependencies and run build scripts
run: npm ci
- name: Run integration tests
Expand All @@ -104,7 +104,7 @@ jobs:
- name: Ensure line endings are consistent
run: git config --global core.autocrlf input
- name: Check out repository
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.5
- name: Install dependencies and run build scripts
run: npm ci
- name: Run integration tests
Expand All @@ -126,7 +126,7 @@ jobs:
with:
node-version: 16.x
- name: Check out repository
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.5
- name: Install dependencies and run build scripts
run: npm ci
- name: Run deploy tests
Expand Down

0 comments on commit f244b28

Please sign in to comment.