Skip to content

Commit

Permalink
Merge branch 'main' into feature/update-clang-16
Browse files Browse the repository at this point in the history
  • Loading branch information
rjaegers authored Nov 7, 2023
2 parents f52a0c1 + bcd2f38 commit fd251c1
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,16 @@ jobs:
with:
image: ${{ env.REGISTRY }}/${{ github.repository }}@${{ steps.build-and-push.outputs.digest }}
dependency-snapshot: true
- uses: actions/dependency-review-action@6c5ccdad469c9f8a2996bfecaec55a631a347034 # v3.1.0
- uses: actions/dependency-review-action@9f45b2463b475767b61721ccfef113fef513e6aa # v3.1.1
if: ${{ github.event_name == 'pull_request' }}
with:
comment-summary-in-pr: always
comment-summary-in-pr: on-failure
fail-on-severity: critical
- name: Sign the image with GitHub OIDC token
if: ${{ github.event_name != 'merge_group' }}
# This step uses the GitHub OIDC identity token to provision an ephemeral certificate
# against the sigstore community Fulcio instance.
env:
DIGEST: ${{ steps.build-and-push.outputs.digest }}
TAGS: ${{ steps.meta.outputs.tags }}
run: cosign sign --yes "${TAGS}@${DIGEST}"
run: echo "${TAGS}" | xargs -I {} cosign sign --yes "{}@${DIGEST}"
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@4c5670f886fe259db4d11222f7dff41c1382304d # v3.7.12
- uses: google-github-actions/release-please-action@db8f2c60ee802b3748b512940dde88eabd7b7e01 # v3.7.13
with:
command: manifest
token: ${{ secrets.AMP_RELEASER_TOKEN }}
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "3.0.0"
".": "3.1.0"
}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/) and this project adheres to [Semantic Versioning](https://semver.org/).

## [3.1.0](https://github.com/philips-software/amp-devcontainer/compare/v3.0.0...v3.1.0) (2023-10-31)


### Features

* **deps:** Bump cmake from 3.26.4 to 3.27.7 in /.devcontainer ([#188](https://github.com/philips-software/amp-devcontainer/issues/188)) ([5cda3b8](https://github.com/philips-software/amp-devcontainer/commit/5cda3b8332fbb01110a9788f5eaf3b33e0fc388b))
* Publish and review SBOM ([#186](https://github.com/philips-software/amp-devcontainer/issues/186)) ([317c6d6](https://github.com/philips-software/amp-devcontainer/commit/317c6d6d15e084dabcd6798a95978e90ed647c66))
* Update cosign signing ([#175](https://github.com/philips-software/amp-devcontainer/issues/175)) ([1b1946a](https://github.com/philips-software/amp-devcontainer/commit/1b1946a322495f9d7413577e35c9a9061fa1b6b2))


### Bug Fixes

* Pr image cleanup ([#173](https://github.com/philips-software/amp-devcontainer/issues/173)) ([dc50228](https://github.com/philips-software/amp-devcontainer/commit/dc5022803c31054582f44fcb52d73c61b56e21c4))

## [3.0.0](https://github.com/philips-software/amp-devcontainer/compare/v2.6.0...v3.0.0) (2023-10-17)


Expand Down

0 comments on commit fd251c1

Please sign in to comment.