Skip to content

Commit 19741b2

Browse files
dependabot[bot]neilime
authored andcommitted
chore(deps): bump the github-actions-dependencies group across 1 directory with 3 updates
Bumps the github-actions-dependencies group with 3 updates in the / directory: [hoverkraft-tech/ci-github-common](https://github.com/hoverkraft-tech/ci-github-common), [github/codeql-action](https://github.com/github/codeql-action) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `hoverkraft-tech/ci-github-common` from 0.14.0 to 0.15.0 - [Release notes](https://github.com/hoverkraft-tech/ci-github-common/releases) - [Commits](hoverkraft-tech/ci-github-common@0.14.0...0.15.0) Updates `github/codeql-action` from 3.26.8 to 3.26.12 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v3.26.8...v3.26.12) Updates `codecov/codecov-action` from 4.5.0 to 4.6.0 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v4.5.0...v4.6.0) --- updated-dependencies: - dependency-name: hoverkraft-tech/ci-github-common dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-dependencies - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Emilien Escalle <emilien.escalle@escemi.com>
1 parent df6e343 commit 19741b2

12 files changed

Lines changed: 40 additions & 29 deletions

File tree

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
22
name: Feature request
33
about: Suggest an idea for this project
4-
title: ''
5-
labels: ''
6-
assignees: ''
7-
4+
title: ""
5+
labels: ""
6+
assignees: ""
87
---
98

109
**Is your feature request related to a problem? Please describe.**

.github/workflows/__greetings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ permissions:
1313

1414
jobs:
1515
greetings:
16-
uses: hoverkraft-tech/ci-github-common/.github/workflows/greetings.yml@0.14.0
16+
uses: hoverkraft-tech/ci-github-common/.github/workflows/greetings.yml@0.15.0

.github/workflows/__main-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
release:
2727
needs: ci
28-
uses: hoverkraft-tech/ci-github-common/.github/workflows/release-actions.yml@0.14.0
28+
uses: hoverkraft-tech/ci-github-common/.github/workflows/release-actions.yml@0.15.0
2929
with:
3030
update-all: ${{ (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')) || github.event_name == 'workflow_dispatch' }}
3131
github-app-id: ${{ vars.CI_BOT_APP_ID }}

.github/workflows/__need-fix-to-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ permissions:
2020

2121
jobs:
2222
main:
23-
uses: hoverkraft-tech/ci-github-common/.github/workflows/need-fix-to-issue.yml@0.14.0
23+
uses: hoverkraft-tech/ci-github-common/.github/workflows/need-fix-to-issue.yml@0.15.0
2424
with:
2525
manual-commit-ref: ${{ inputs.manual-commit-ref }}
2626
manual-base-ref: ${{ inputs.manual-base-ref }}

.github/workflows/__shared-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212

1313
jobs:
1414
linter:
15-
uses: hoverkraft-tech/ci-github-common/.github/workflows/linter.yml@0.14.0
15+
uses: hoverkraft-tech/ci-github-common/.github/workflows/linter.yml@0.15.0
1616

1717
test-action-get-package-manager:
1818
name: Test action "get-package-manager"

.github/workflows/__stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ permissions:
1010

1111
jobs:
1212
main:
13-
uses: hoverkraft-tech/ci-github-common/.github/workflows/stale.yml@0.14.0
13+
uses: hoverkraft-tech/ci-github-common/.github/workflows/stale.yml@0.15.0

.github/workflows/continuous-integration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<!-- start title -->
22

3-
# GitHub Reusable Workflow: NodeJS Continuous Integration
3+
# GitHub Reusable Workflow: Node.js Continuous Integration
44

55
<!-- end title -->
66
<!-- start description -->
77

8-
Workflow to performs continuous integration steps agains a NodeJs project:
8+
Workflow to performs continuous integration steps agains a Node.js project:
99

1010
- CodeQL analysis
1111
- Linting

.github/workflows/continuous-integration.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -61,20 +61,20 @@ jobs:
6161
security-events: write
6262
runs-on: "ubuntu-latest"
6363
steps:
64-
- uses: hoverkraft-tech/ci-github-common/actions/checkout@0.14.0
65-
- uses: github/codeql-action/init@v3.26.8
64+
- uses: hoverkraft-tech/ci-github-common/actions/checkout@0.15.0
65+
- uses: github/codeql-action/init@v3.26.12
6666
with:
6767
languages: ${{ inputs.code-ql }}
68-
- uses: github/codeql-action/analyze@v3.26.8
68+
- uses: github/codeql-action/analyze@v3.26.12
6969

7070
dependency-review:
7171
name: 🛡️ Dependency Review
7272
if: github.event_name == 'pull_request' && inputs.checks == true && inputs.dependency-review
7373
permissions:
7474
contents: read
7575
runs-on: "ubuntu-latest"
76-
steps:
77-
- uses: hoverkraft-tech/ci-github-common/actions/checkout@0.14.0
76+
steps:
77+
- uses: hoverkraft-tech/ci-github-common/actions/checkout@0.15.0
7878
- uses: actions/dependency-review-action@v4
7979

8080
setup:
@@ -90,7 +90,7 @@ jobs:
9090
steps:
9191
# FIXME: This is a workaround for having workflow ref. See https://github.com/orgs/community/discussions/38659
9292
# jscpd:ignore-start
93-
- uses: hoverkraft-tech/ci-github-common/actions/checkout@0.14.0
93+
- uses: hoverkraft-tech/ci-github-common/actions/checkout@0.15.0
9494

9595
- id: oidc
9696
uses: ChristopherHX/oidc@v3
@@ -162,7 +162,7 @@ jobs:
162162
id-token: write
163163
steps:
164164
# FIXME: This is a workaround for having workflow ref. See https://github.com/orgs/community/discussions/38659
165-
- uses: hoverkraft-tech/ci-github-common/actions/checkout@0.14.0
165+
- uses: hoverkraft-tech/ci-github-common/actions/checkout@0.15.0
166166

167167
- id: oidc
168168
uses: ChristopherHX/oidc@v3
@@ -196,7 +196,7 @@ jobs:
196196
id-token: write
197197
steps:
198198
# FIXME: This is a workaround for having workflow ref. See https://github.com/orgs/community/discussions/38659
199-
- uses: hoverkraft-tech/ci-github-common/actions/checkout@0.14.0
199+
- uses: hoverkraft-tech/ci-github-common/actions/checkout@0.15.0
200200
if: needs.setup.outputs.build-commands
201201

202202
- id: oidc
@@ -257,7 +257,7 @@ jobs:
257257
id-token: write
258258
steps:
259259
# FIXME: This is a workaround for having workflow ref. See https://github.com/orgs/community/discussions/38659
260-
- uses: hoverkraft-tech/ci-github-common/actions/checkout@0.14.0
260+
- uses: hoverkraft-tech/ci-github-common/actions/checkout@0.15.0
261261

262262
- if: needs.setup.outputs.build-artifact
263263
uses: actions/download-artifact@v4
@@ -287,6 +287,6 @@ jobs:
287287

288288
- name: 📊 Code coverage
289289
if: inputs.coverage == 'codecov'
290-
uses: codecov/codecov-action@v4.5.0
290+
uses: codecov/codecov-action@v4.6.0
291291
with:
292292
use_oidc: true

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ threatening, offensive, or harmful.
6565

6666
This Code of Conduct applies both within project spaces and in public spaces
6767
when an individual is representing the project or its community. Examples of
68-
representing a project or community include using an official project e-mail
68+
representing a project or community include using an official project email
6969
address, posting via an official social media account, or acting as an appointed
7070
representative at an online or offline event. Representation of a project may be
7171
further defined and clarified by project maintainers.

Makefile

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,28 @@ help: ## Display help
44
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
55

66
lint: ## Execute linting
7+
$(call run_linter,)
8+
9+
lint-fix: ## Execute linting and fix
10+
$(call run_linter, \
11+
-e FIX_YAML_PRETTIER=true \
12+
-e FIX_MARKDOWN=true \
13+
-e FIX_MARKDOWN_PRETTIER=true \
14+
-e FIX_NATURAL_LANGUAGE=true)
15+
16+
define run_linter
717
DEFAULT_WORKSPACE="$(CURDIR)"; \
818
LINTER_IMAGE="linter:latest"; \
919
VOLUME="$$DEFAULT_WORKSPACE:$$DEFAULT_WORKSPACE"; \
10-
docker build --build-arg UID=$(id -u) --build-arg GID=$(id -g) --tag $$LINTER_IMAGE .; \
20+
docker build --build-arg UID=$(id -u) --build-arg GID=$(id -g) --tag $$LINTER_IMAGE .; \
1121
docker run \
1222
-e DEFAULT_WORKSPACE="$$DEFAULT_WORKSPACE" \
1323
-e FILTER_REGEX_INCLUDE="$(filter-out $@,$(MAKECMDGOALS))" \
24+
$(1) \
1425
-v $$VOLUME \
1526
--rm \
1627
$$LINTER_IMAGE
28+
endef
1729

1830
#############################
1931
# Argument fix workaround

0 commit comments

Comments
 (0)