Skip to content
This repository was archived by the owner on Aug 2, 2025. It is now read-only.

Commit ff635b1

Browse files
committed
Fix: Adjusted workflows - removed fixed version (to be added back)
2 parents d2d65c6 + 0dd818e commit ff635b1

File tree

9 files changed

+56
-56
lines changed

9 files changed

+56
-56
lines changed

.github/workflows/Licensed.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout latest code
10-
uses: actions/checkout@v4
10+
uses: actions/checkout@4
1111
- name: Use Node.js 20.x
12-
uses: actions/setup-node@latest
12+
uses: actions/setup-node
1313
with:
1414
node-version: 20.x
1515
- name: Run npm install
1616
run: npm install
1717
- name: Check licenses
18-
uses: tangro/actions-license-check@v1.0.14
18+
uses: tangro/actions-license-check
1919
with:
2020
allowed-licenses: "MIT; ISC; Apache-2.0; Custom: https://www.telerik.com/kendo-angular-ui/; Custom: https://www.telerik.com/kendo-react-ui/; BSD"
2121
env:

.github/workflows/anchore.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ permissions:
1414
jobs:
1515
Anchore-Build-Scan:
1616
permissions:
17-
contents: read # for actions/checkout to fetch code
17+
contents: read
1818
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
1919
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Check out the code
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@4
2424
- name: Build the Docker image
2525
run: docker build . --file Dockerfile --tag localbuild/testimage:latest
2626
- name: Run the Anchore Grype scan action
@@ -31,6 +31,6 @@ jobs:
3131
fail-build: true
3232
severity-cutoff: critical
3333
- name: Upload vulnerability report
34-
uses: github/codeql-action/upload-sarif@v3
34+
uses: github/codeql-action/upload-sarif
3535
with:
3636
sarif_file: ${{ steps.scan.outputs.sarif }}

.github/workflows/build-dev.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Set up QEMU
17-
uses: docker/setup-qemu-action@v3
17+
uses: docker/setup-qemu-action
1818

1919
- name: Set up Docker Buildx
20-
uses: docker/setup-buildx-action@v3
20+
uses: docker/setup-buildx-action
2121

2222
- name: Login to Github Container Registry
23-
uses: docker/login-action@v3
23+
uses: docker/login-action
2424
with:
2525
registry: ghcr.io
2626
username: ${{ github.repository_owner }}
2727
password: ${{ github.token }}
2828

2929
- name: Generate Docker tags
30-
uses: docker/metadata-action@v5
30+
uses: docker/metadata-action
3131
id: metadata
3232
with:
3333
images: ghcr.io/${{ github.repository }}
@@ -37,7 +37,7 @@ jobs:
3737
latest=false
3838
3939
- name: Build and push
40-
uses: docker/build-push-action@v5
40+
uses: docker/build-push-action
4141
with:
4242
platforms: linux/amd64,linux/arm64,
4343
push: true

.github/workflows/build-image.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Set up QEMU
16-
uses: docker/setup-qemu-action@v3
16+
uses: docker/setup-qemu-action
1717

1818
- name: Set up Docker Buildx
19-
uses: docker/setup-buildx-action@v3
19+
uses: docker/setup-buildx-action
2020

2121
- name: Login to Github Container Registry
22-
uses: docker/login-action@v3
22+
uses: docker/login-action
2323
with:
2424
registry: ghcr.io
2525
username: ${{ github.repository_owner }}
2626
password: ${{ github.token }}
2727

2828
- name: Generate Docker tags
29-
uses: docker/metadata-action@v5
29+
uses: docker/metadata-action
3030
id: metadata
3131
with:
3232
images: ghcr.io/${{ github.repository }}
@@ -36,7 +36,7 @@ jobs:
3636
latest=true
3737
3838
- name: Build and push
39-
uses: docker/build-push-action@v5
39+
uses: docker/build-push-action
4040
with:
4141
platforms: linux/amd64,linux/arm64
4242
push: true

.github/workflows/cloc.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@4
1919

2020
- name: Count Lines of Code (cloc)
21-
uses: djdefi/cloc-action@6
21+
uses: djdefi/cloc-action
2222
with:
2323
options: --md --report-file=cloc.md --exclude-dir=node_modules --exclude-lang=YAML,JSON --exclude-list-file=package-lock.json
2424

2525
- name: Create comment from markdown file
26-
uses: GrantBirki/comment@v2.1.0
26+
uses: GrantBirki/comment
2727
with:
2828
file: cloc.md

.github/workflows/codeql.yml

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ name: "CodeQL Advanced"
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches: ["main"]
66
pull_request:
7-
branches: [ "main" ]
7+
branches: ["main"]
88
schedule:
9-
- cron: '32 1 * * 5'
9+
- cron: "32 1 * * 5"
1010

1111
jobs:
1212
analyze:
1313
name: Analyze TypeScript
14-
runs-on: 'ubuntu-latest'
14+
runs-on: "ubuntu-latest"
1515
permissions:
1616
security-events: write
1717
packages: read
@@ -22,31 +22,31 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
include:
25-
- language: javascript-typescript
26-
build-mode: none
27-
25+
- language: javascript-typescript
26+
build-mode: none
27+
2828
steps:
29-
- name: Checkout repository
30-
uses: actions/checkout@v4
29+
- name: Checkout repository
30+
uses: actions/checkout@4
3131

32-
- name: Initialize CodeQL
33-
uses: github/codeql-action/init@v3
34-
with:
35-
languages: ${{ matrix.language }}
36-
build-mode: ${{ matrix.build-mode }}
37-
queries: security-extended
32+
- name: Initialize CodeQL
33+
uses: github/codeql-action/init
34+
with:
35+
languages: ${{ matrix.language }}
36+
build-mode: ${{ matrix.build-mode }}
37+
queries: security-extended
3838

39-
- if: matrix.build-mode == 'manual'
40-
shell: bash
41-
run: |
42-
echo 'If you are using a "manual" build mode for one or more of the' \
43-
'languages you are analyzing, replace this with the commands to build' \
44-
'your code, for example:'
45-
echo ' make bootstrap'
46-
echo ' make release'
47-
exit 1
39+
- if: matrix.build-mode == 'manual'
40+
shell: bash
41+
run: |
42+
echo 'If you are using a "manual" build mode for one or more of the' \
43+
'languages you are analyzing, replace this with the commands to build' \
44+
'your code, for example:'
45+
echo ' make bootstrap'
46+
echo ' make release'
47+
exit 1
4848
49-
- name: Perform CodeQL Analysis
50-
uses: github/codeql-action/analyze@v3
51-
with:
52-
category: "/language:${{matrix.language}}"
49+
- name: Perform CodeQL Analysis
50+
uses: github/codeql-action/analyze
51+
with:
52+
category: "/language:${{matrix.language}}"

.github/workflows/remove-stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
stale:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/stale@v9
10+
- uses: actions/stale
1111
with:
1212
stale-issue-message: "This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days."
1313
stale-pr-message: "This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 10 days."

.github/workflows/test-build.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout repository
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@4
1515

1616
# Set up Node.js using nvm
1717
- name: Set up Node.js version from .nvmrc
@@ -25,28 +25,28 @@ jobs:
2525
npm -v
2626
2727
- name: Set up QEMU
28-
uses: docker/setup-qemu-action@v3
28+
uses: docker/setup-qemu-action
2929

3030
- name: Set up Docker Buildx
31-
uses: docker/setup-buildx-action@v3
31+
uses: docker/setup-buildx-action
3232

3333
- name: Login to Github Container Registry
34-
uses: docker/login-action@v3
34+
uses: docker/login-action
3535
with:
3636
registry: ghcr.io
3737
username: ${{ github.repository_owner }}
3838
password: ${{ secrets.GITHUB_TOKEN }}
3939

4040
- name: Generate Docker tags
41-
uses: docker/metadata-action@v5
41+
uses: docker/metadata-action
4242
id: metadata
4343
with:
4444
images: ghcr.io/${{ github.repository }}
4545
tags: |
4646
type=raw,enable=true,priority=200,prefix=,suffix=,value=${{ github.sha }}
4747
4848
- name: Build and Push Docker Images
49-
uses: docker/build-push-action@v5
49+
uses: docker/build-push-action
5050
with:
5151
platforms: linux/amd64,linux/arm64
5252
push: false

.github/workflows/validation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ jobs:
55
runs-on: ubuntu
66
steps:
77
- name: Checkout
8-
uses: actions/checkout@v4
8+
uses: actions/checkout@4
99

1010
- name: Setup Node.js 20
11-
uses: actions/setup-node@v4
11+
uses: actions/setup-node
1212
with:
1313
node-version: 20
1414
cache: npm

0 commit comments

Comments
 (0)