Skip to content

Commit accf500

Browse files
committed
Use fixed version for runners
1 parent abf50cd commit accf500

21 files changed

+96
-200
lines changed

.github/workflows/accessTests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- "master"
77
# Triggers the workflow on PRs to master branch only.
8-
pull_request_target:
8+
pull_request:
99
types: [opened, synchronize]
1010
branches:
1111
- "master"
@@ -25,11 +25,11 @@ jobs:
2525
matrix:
2626
os:
2727
- name: ubuntu
28-
version: latest
28+
version: 24.04
2929
- name: windows
30-
version: latest
30+
version: 2022
3131
- name: macos
32-
version: latest
32+
version: 14
3333
runs-on: ${{ matrix.os.name }}-${{ matrix.os.version }}
3434
steps:
3535
- name: Skip macOS - JGC-413

.github/workflows/analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches:
66
- "master"
7-
pull_request_target:
7+
pull_request:
88
types: [opened, synchronize]
99
branches:
1010
- "master"

.github/workflows/artifactoryTests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- "master"
77
# Triggers the workflow on PRs to master branch only.
8-
pull_request_target:
8+
pull_request:
99
types: [opened, synchronize]
1010
branches:
1111
- "master"
@@ -23,11 +23,11 @@ jobs:
2323
suite: [artifactory, artifactoryProject]
2424
os:
2525
- name: ubuntu
26-
version: latest
26+
version: 24.04
2727
- name: windows
28-
version: latest
28+
version: 2022
2929
- name: macos
30-
version: latest
30+
version: 14
3131
runs-on: ${{ matrix.os.name }}-${{ matrix.os.version }}
3232
env:
3333
JFROG_CLI_LOG_LEVEL: DEBUG

.github/workflows/cla.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: "CLA Assistant"
22
on:
33
# issue_comment triggers this action on each comment on issues and pull requests
44
issue_comment:
5-
types: [ created ]
6-
pull_request_target:
7-
types: [ opened, synchronize ]
5+
types: [created]
6+
pull_request:
7+
types: [opened, synchronize]
88
jobs:
99
CLAssistant:
1010
runs-on: ubuntu-latest
@@ -15,4 +15,4 @@ jobs:
1515
event_comment_body: ${{ github.event.comment.body }}
1616
event_name: ${{ github.event_name }}
1717
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18-
CLA_SIGN_TOKEN: ${{ secrets.CLA_SIGN_TOKEN }}
18+
CLA_SIGN_TOKEN: ${{ secrets.CLA_SIGN_TOKEN }}

.github/workflows/distributionTests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- "master"
77
# Triggers the workflow on PRs to master branch only.
8-
pull_request_target:
8+
pull_request:
99
types: [opened, synchronize]
1010
branches:
1111
- "master"

.github/workflows/dockerTests.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- "master"
77
# Triggers the workflow on PRs to master branch only.
8-
pull_request_target:
8+
pull_request:
99
types: [opened, synchronize]
1010
branches:
1111
- "master"
@@ -16,8 +16,13 @@ concurrency:
1616
cancel-in-progress: true
1717
jobs:
1818
Docker-tests:
19-
name: ubuntu-latest
20-
runs-on: ubuntu-latest
19+
name: Docker tests (${{ matrix.os.name }})
20+
strategy:
21+
matrix:
22+
os:
23+
- name: ubuntu
24+
version: 24.04
25+
runs-on: ${{ matrix.os.name }}-${{ matrix.os.version }}
2126
steps:
2227
- name: Checkout code
2328
uses: actions/checkout@v4

.github/workflows/frogbot-scan-pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "Frogbot Scan Pull Request"
22
on:
3-
pull_request_target:
3+
pull_request:
44
types: [opened, synchronize]
55
branches:
66
- "master"
@@ -102,7 +102,7 @@ jobs:
102102

103103
# [Optional, default: "TRUE"]
104104
# Fails the Frogbot task if any security issue is found.
105-
# JF_FAIL: "FALSE"
105+
JF_FAIL: "FALSE"
106106

107107
# [Optional]
108108
# Frogbot will download the project dependencies if they're not cached locally. To download the

.github/workflows/frogbot-scan-repository.yml

Lines changed: 0 additions & 130 deletions
This file was deleted.

.github/workflows/goTests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- "master"
77
# Triggers the workflow on PRs to master branch only.
8-
pull_request_target:
8+
pull_request:
99
types: [opened, synchronize]
1010
branches:
1111
- "master"

.github/workflows/gradleTests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- "master"
77
# Triggers the workflow on PRs to master branch only.
8-
pull_request_target:
8+
pull_request:
99
types: [opened, synchronize]
1010
branches:
1111
- "master"
@@ -22,11 +22,11 @@ jobs:
2222
matrix:
2323
os:
2424
- name: ubuntu
25-
version: latest
25+
version: 24.04
2626
- name: windows
27-
version: latest
27+
version: 2022
2828
- name: macos
29-
version: latest
29+
version: 14
3030
gradle-version: [5.6.4, 8.3]
3131
runs-on: ${{ matrix.os.name }}-${{ matrix.os.version }}
3232
env:

0 commit comments

Comments
 (0)