Skip to content

Commit

Permalink
Merge pull request #1686 from GhostWriters/dependabot/github_actions/…
Browse files Browse the repository at this point in the history
…actions/checkout-4.1.1

Bump actions/checkout from 4.1.0 to 4.1.1
  • Loading branch information
nemchik committed Oct 23, 2023
2 parents 7d8cf65 + 5965a65 commit cbca8a3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: Build docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.1.1
- uses: actions/setup-python@v4.7.1
with:
python-version: 3.x
Expand All @@ -24,7 +24,7 @@ jobs:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.1.1
with:
fetch-depth: '0'
- uses: actions/setup-python@v4.7.1
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
editorconfig-checker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.1.1
- name: editorconfig-checker
run: |
docker run --rm \
Expand All @@ -16,7 +16,7 @@ jobs:
markdownlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.1.1
- name: markdownlint
run: |
docker run --rm \
Expand All @@ -29,7 +29,7 @@ jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.1.1
- name: shellcheck
run: |
find "${GITHUB_WORKSPACE}" -name '*.sh' -exec \
Expand All @@ -41,7 +41,7 @@ jobs:
shfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.1.1
- name: shfmt
run: |
find "${GITHUB_WORKSPACE}" -name '*.sh' -exec \
Expand All @@ -54,7 +54,7 @@ jobs:
yamllint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.1.1
- name: yamllint
run: |
docker run --rm \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.1.1
- name: run
env:
CI: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
validate-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.1.1
- name: Validate Documentation
run: |
for APPFOLDER in compose/.apps/*; do
Expand All @@ -28,7 +28,7 @@ jobs:
validate-images:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.1.1
- name: Validate Images
run: |
for APPFOLDER in compose/.apps/*; do
Expand Down

0 comments on commit cbca8a3

Please sign in to comment.