-
Notifications
You must be signed in to change notification settings - Fork 25
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
Update pipeline to use reusable witness workflow #78
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
# Copyright 2023 The Archivista Contributors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
permissions: | ||
id-token: write # This is required for requesting the JWT | ||
contents: read # This is required for actions/checkout | ||
name: pipeline | ||
on: | ||
push: | ||
tags: | ||
- v* | ||
branches: | ||
- main | ||
pull_request: | ||
jobs: | ||
fmt: | ||
uses: ./.github/workflows/witness.yml | ||
with: | ||
pull_request: ${{ github.event_name == 'pull_request' }} | ||
step: static-analysis | ||
attestations: "github" | ||
command: go fmt ./... | ||
|
||
static_analysis: | ||
uses: ./.github/workflows/witness.yml | ||
with: | ||
pull_request: ${{ github.event_name == 'pull_request' }} | ||
step: static-analysis | ||
attestations: "github" | ||
command: go vet ./... | ||
|
||
test: | ||
needs: [fmt, static_analysis] | ||
uses: ./.github/workflows/witness.yml | ||
with: | ||
pull_request: ${{ github.event_name == 'pull_request' }} | ||
step: "test" | ||
attestations: "github" | ||
command: go test -v -coverprofile=profile.cov -covermode=atomic ./... | ||
|
||
e2e-tests: | ||
needs: test | ||
uses: ./.github/workflows/witness.yml | ||
with: | ||
pull_request: ${{ github.event_name == 'pull_request' }} | ||
step: "e2e" | ||
attestations: "github" | ||
command: ./test/test.sh | ||
|
||
release: | ||
needs: e2e-tests | ||
permissions: | ||
id-token: write | ||
contents: write | ||
packages: write | ||
runs-on: ubuntu-latest | ||
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions/[email protected] | ||
with: | ||
go-version: 1.21.x | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Download GoReleaser | ||
run: go install github.com/goreleaser/goreleaser@latest | ||
|
||
- name: Run GoReleaser | ||
uses: testifysec/witness-run-action@40aa4ef36fc431a37de7c3faebcb66513c03b934 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_REPOSITORY_OWNER: ${{ github.repository_owner }} | ||
with: | ||
step: "build" | ||
attestations: "github" | ||
command: goreleaser release --clean |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Copyright 2023 The Archivista Contributors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
pull_request: | ||
required: true | ||
type: boolean | ||
command: | ||
required: true | ||
type: string | ||
step: | ||
required: true | ||
type: string | ||
attestations: | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
witness: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions/[email protected] | ||
with: | ||
go-version: 1.21.x | ||
|
||
- if: ${{ inputs.pull_request == false }} | ||
uses: testifysec/witness-run-action@40aa4ef36fc431a37de7c3faebcb66513c03b934 | ||
with: | ||
step: ${{ inputs.step }} | ||
attestations: $${ inputs.attestations }} | ||
command: /bin/sh -c "$${ inputs.command }}" | ||
Comment on lines
+44
to
+45
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can I ask, does the It seems to be getting interpolated as expected by the action so I assume either there's some special meaning, or its auto escaping these special characters through some means. Or maybe I'm wildly missing something... 😅 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nope, this was just wrong. 😅 And I deleted the branch too fast to fix it here. 😞 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
- if: ${{ inputs.pull_request == true }} | ||
run: ${{ inputs.command }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think there is a potential for a script injection attack. https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#example-of-a-script-injection-attack
Here is a suggestion
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is something that in general caught my attention as I've been familiarizing myself with Witness and some of the pipeline examples.
I have thoughts on how this could be solved, though it's possible its over-engineering so it would be better to discuss it elsewhere. I can create a feature issue if that is what would be most appropriate for internal assessment || community discussion.
EDIT: As @mikhailswift pointed out though, it's likely most if not all scenarios like this may not be vulnerable in a meaningful way. That said, there may be something to be said about creating a more streamlined secure way of implementing pipeline job scripts in general for orgs/devs who may not have the same level of insight into issues such as this.