Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docker workflow: support private repository checkout #156

Merged
merged 4 commits into from
Jan 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ on:
description: Use caching mechanism for a given language
submodules:
required: false
type: boolean
default: false
description: True to initialize git submodules
type: string
default: ''
description: True or Recursive to initialize git submodules

# Permissions needed
# permissions:
Expand All @@ -86,6 +86,7 @@ jobs:
uses: actions/checkout@v4
with:
submodules: ${{ inputs.submodules }}
token: ${{ inputs.submodules != '' && secrets.REPO_PRIVATE_READ_PAT || github.token }}
- name: Run pre-build
run: |
if test -f "Makefile"; then
Expand Down
8 changes: 5 additions & 3 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# GitHub Workflows Release Notes

## 0.0.3-dev - 2025-01-08
## 0.0.3-dev - 2025-01-17

### Features

- docker workflow: support private repository checkout (PR #156 by @chicco785)
- docker workflow: support submodules initialisation (PR #155 by @gtauzin)
- Use [linkspector](https://github.com/UmbrellaDocs/linkspector) to check links
(PR #148 by @chicco785)
- docker workflow: add javascript mode for cache (PR #146 by @chicco785)
Expand Down Expand Up @@ -45,6 +47,8 @@

### Dependencies

- golang and docker workflows: Update trivy configuration to last github action
version (PR #140 by @chicco785)
- Use SonarSource/sonarqube-scan-action (PR #153 by @chicco785)
- Bump DavidAnson/markdownlint-cli2-action from 18 to 19 (PR #152 by
@dependabot[bot])
Expand All @@ -54,8 +58,6 @@
@dependabot[bot])
- Bump DavidAnson/markdownlint-cli2-action from 17 to 18 (PR #141 by
@dependabot[bot])
- golang and docker workflows: Update trivy configuration to last github action
version (PR #140 by @chicco785)
- Bump DavidAnson/markdownlint-cli2-action from 16 to 17 (PR #134 by
@dependabot[bot])
- Bump mikepenz/release-changelog-builder-action from 4 to 5 (PR #132 by
Expand Down
Loading