Skip to content
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
12 changes: 8 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@
NUGET_CACHE: local

- name: Upload packages to GitHub Release
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@3bb12739c298aeb8a4eeaf626c5b8d85266b0e65 # v2

Check notice

Code scanning / zizmor

action functionality is already included by the runner: use gh release in a script step Note

action functionality is already included by the runner: use gh release in a script step
Comment thread
moodyjmz marked this conversation as resolved.
Dismissed
if: matrix.brand.name == 'euro-office' && startsWith(github.ref, 'refs/tags/')
with:
files: |
Expand Down Expand Up @@ -439,6 +439,8 @@
if: |
!cancelled() &&
needs.build.result == 'success' &&
(github.event_name != 'pull_request' ||
github.event.pull_request.head.repo.full_name == github.repository) &&
(github.event_name == 'pull_request' ||
((github.ref == format('refs/heads/{0}', github.event.repository.default_branch) || startsWith(github.ref, 'refs/tags/'))
&& needs.manifest.result == 'success'))
Expand All @@ -449,6 +451,8 @@
steps:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
persist-credentials: false

- name: Determine image
id: image
Expand All @@ -462,7 +466,7 @@
fi

- name: Log in to GitHub Container Registry
uses: docker/login-action@v4
uses: docker/login-action@c99871dec2022cc055c062a10cc1a1310835ceb4 # v4.3.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand All @@ -472,7 +476,7 @@
run: docker pull ${{ steps.image.outputs.ref }}

- name: Set up Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0

Check failure

Code scanning / zizmor

runtime artifacts potentially vulnerable to a cache poisoning attack: this step Error

runtime artifacts potentially vulnerable to a cache poisoning attack: this step
Comment thread
moodyjmz marked this conversation as resolved.
Dismissed
with:
node-version: '22'
cache: 'npm'
Expand All @@ -494,7 +498,7 @@

- name: Upload Playwright report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: playwright-report-${{ github.sha }}
path: e2e/playwright-report/
Expand Down
33 changes: 33 additions & 0 deletions .github/workflows/zizmor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: GitHub Actions Security Analysis with zizmor

on:
push:
branches: ["main"]
paths: [".github/workflows/**"]
pull_request:
branches: ["**"]
paths: [".github/workflows/**"]
types:
- opened
- synchronize
- reopened
- ready_for_review

permissions: {}

jobs:
zizmor:
name: Run zizmor
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
persist-credentials: false

- name: Run zizmor
uses: zizmorcore/zizmor-action@192e21d79ab29983730a13d1382995c2307fbcaa # v0.5.7
with:
inputs: ./.github/workflows
Loading