Skip to content

Commit 8a5a7d8

Browse files
authored
Merge branch 'idaholab:main' into main
2 parents 82e5fe1 + 286c653 commit 8a5a7d8

132 files changed

Lines changed: 7895 additions & 423 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/api-build-and-push-ghcr.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ on:
2121
jobs:
2222
docker:
2323
uses: ./.github/workflows/docker-build-push-scan.yml
24+
permissions:
25+
actions: write
26+
packages: write
27+
contents: read
28+
security-events: write
2429
with:
2530
service: api
2631
dockerfile: ./Dockerfiles/api.Dockerfile

.github/workflows/arkime-build-and-push-ghcr.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ on:
2626
jobs:
2727
docker:
2828
uses: ./.github/workflows/docker-build-push-scan.yml
29+
permissions:
30+
actions: write
31+
packages: write
32+
contents: read
33+
security-events: write
2934
with:
3035
service: arkime
3136
dockerfile: ./Dockerfiles/arkime.Dockerfile

.github/workflows/dashboards-build-and-push-ghcr.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ on:
2020
jobs:
2121
docker:
2222
uses: ./.github/workflows/docker-build-push-scan.yml
23+
permissions:
24+
actions: write
25+
packages: write
26+
contents: read
27+
security-events: write
2328
with:
2429
service: dashboards
2530
dockerfile: ./Dockerfiles/dashboards.Dockerfile

.github/workflows/dashboards-helper-build-and-push-ghcr.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ on:
2121
jobs:
2222
docker:
2323
uses: ./.github/workflows/docker-build-push-scan.yml
24+
permissions:
25+
actions: write
26+
packages: write
27+
contents: read
28+
security-events: write
2429
with:
2530
service: dashboards-helper
2631
dockerfile: ./Dockerfiles/dashboards-helper.Dockerfile

.github/workflows/dirinit-build-and-push-ghcr.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ on:
1515
jobs:
1616
docker:
1717
uses: ./.github/workflows/docker-build-push-scan.yml
18+
permissions:
19+
actions: write
20+
packages: write
21+
contents: read
22+
security-events: write
1823
with:
1924
service: dirinit
2025
dockerfile: ./Dockerfiles/dirinit.Dockerfile

.github/workflows/docker-build-push-scan.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ jobs:
4040
steps:
4141
-
4242
name: Cancel previous run in progress
43-
uses: styfle/cancel-workflow-action@d07a454dad7609a92316b57b23c9ccfd4f59af66
43+
uses: styfle/cancel-workflow-action@d07a454dad7609a92316b57b23c9ccfd4f59af66 # v0.13.1
4444
with:
4545
ignore_sha: true
4646
all_but_latest: true
4747
access_token: ${{ secrets.GITHUB_TOKEN }}
4848
-
4949
name: Checkout
50-
uses: actions/checkout@v6
50+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5151
with:
5252
submodules: 'recursive'
5353
-
@@ -77,20 +77,20 @@ jobs:
7777
id: extract_malcolm_version
7878
-
7979
name: Set up Docker Buildx
80-
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd
80+
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
8181
with:
8282
driver-opts: |
8383
image=moby/buildkit:master
8484
-
8585
name: Log in to registry
86-
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2
86+
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
8787
with:
8888
registry: ghcr.io
8989
username: ${{ github.repository_owner }}
9090
password: ${{ secrets.GITHUB_TOKEN }}
9191
-
9292
name: Build and push
93-
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294
93+
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0
9494
with:
9595
context: .
9696
file: ${{ inputs.dockerfile }}
@@ -111,7 +111,7 @@ jobs:
111111
name: Run Trivy vulnerability scanner
112112
if: ${{ matrix.platform == 'linux/amd64' }}
113113
id: trivy-scan
114-
uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1
114+
uses: aquasecurity/trivy-action@ed142fd0673e97e23eac54620cfb913e5ce36c25 # v0.36.0
115115
env:
116116
TRIVY_DB_REPOSITORY: ghcr.io/aquasecurity/trivy-db,public.ecr.aws/aquasecurity/trivy-db
117117
with:
@@ -128,6 +128,6 @@ jobs:
128128
-
129129
name: Upload Trivy scan results to GitHub Security tab
130130
if: ${{ matrix.platform == 'linux/amd64' }}
131-
uses: github/codeql-action/upload-sarif@v4
131+
uses: github/codeql-action/upload-sarif@9e0d7b8d25671d64c341c19c0152d693099fb5ba # v4.35.5
132132
with:
133133
sarif_file: 'trivy-results.sarif'

.github/workflows/file-upload-build-and-push-ghcr.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ on:
1818
jobs:
1919
docker:
2020
uses: ./.github/workflows/docker-build-push-scan.yml
21+
permissions:
22+
actions: write
23+
packages: write
24+
contents: read
25+
security-events: write
2126
with:
2227
service: file-upload
2328
dockerfile: ./Dockerfiles/file-upload.Dockerfile

.github/workflows/filebeat-build-and-push-ghcr.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ on:
2222
jobs:
2323
docker:
2424
uses: ./.github/workflows/docker-build-push-scan.yml
25+
permissions:
26+
actions: write
27+
packages: write
28+
contents: read
29+
security-events: write
2530
with:
2631
service: filebeat-oss
2732
dockerfile: ./Dockerfiles/filebeat.Dockerfile

.github/workflows/filescan-build-and-push-ghcr.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ on:
2323
jobs:
2424
docker:
2525
uses: ./.github/workflows/docker-build-push-scan.yml
26+
permissions:
27+
actions: write
28+
packages: write
29+
contents: read
30+
security-events: write
2631
with:
2732
service: filescan
2833
dockerfile: ./Dockerfiles/filescan.Dockerfile

.github/workflows/freq-build-and-push-ghcr.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ on:
1818
jobs:
1919
docker:
2020
uses: ./.github/workflows/docker-build-push-scan.yml
21+
permissions:
22+
actions: write
23+
packages: write
24+
contents: read
25+
security-events: write
2126
with:
2227
service: freq
2328
dockerfile: ./Dockerfiles/freq.Dockerfile

0 commit comments

Comments
 (0)