-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Install current version of git (2.42.0) (#24)
* update Dockerfile and configs - Dockerfile: - get all types of ssh keys from github and devops (not only rsa) - install most recent version of git - replace all `apt-get -yq` with `apt-get -y` - mega-linter workflow: - reduce token permission for contents to read - add job env `GITHUB_TOKEN` - dockerhub-description: - set commit sha for dockerhub-description action - ci workflow - use actions/checkout v4 - remove recommendations from docker scout - set severities for docker-scout to critical - dependabot: - set github-actions update interval to daily - small update to readme - remove `(tmp/|\\.example|` from regex exclude in .mega-linter.yml * install git after dependencies and apt-fast
- Loading branch information
Showing
7 changed files
with
46 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,7 +42,7 @@ jobs: | |
DOCKERHUB_USERNAME: ${{ github.repository_owner }} | ||
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v3.6.0 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Free up disk space | ||
uses: ./.github/actions/free-space | ||
|
@@ -132,9 +132,6 @@ jobs: | |
type=registry,ref=${{ env.REGISTRY_IMAGE }}:cache-${{ matrix.codename }},mode=max | ||
# this will give us some useful information about the build | ||
provenance: mode=max | ||
# for PRs the SBOM will be built in Docker Scout | ||
# sbom: true | ||
# depended on the event type, we either push or load the image | ||
push: true | ||
# outputs: type=image,name=${{ env.REGISTRY_IMAGE }}:${{ matrix.from-version }}-${{ github.head_ref || github.ref_name }},push=true | ||
env: | ||
|
@@ -146,12 +143,12 @@ jobs: | |
continue-on-error: true | ||
uses: docker/[email protected] | ||
with: | ||
command: recommendations,sbom,compare | ||
command: sbom,compare | ||
image: ${{ steps.meta.outputs.tags }} | ||
to: ${{ format('{0}/{1}:{2}', env.REGISTRY, env.IMAGE_REPOSITORY, matrix.from-version) }} | ||
organization: ${{ github.repository_owner }} | ||
ignore-unchanged: true | ||
only-severities: high | ||
only-severities: critical | ||
write-comment: ${{ github.actor != 'nektos/act' }} | ||
keep-previous-comments: true | ||
summary: ${{ github.actor != 'nektos/act' }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters