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
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@ name: Checkmarx One Containers-Resolver
on:
pull_request:

permissions:
contents: read

jobs:
unit-tests:
runs-on: ubuntu-latest
runs-on: cx-public-ubuntu-x64
steps:
- name: Checkout the repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:

jobs:
auto-merge:
runs-on: ubuntu-latest
runs-on: cx-public-ubuntu-x64
if: github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- name: Fetch dependabot metadata
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-rebase-conflicts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ permissions:

jobs:
rebase-conflicts:
runs-on: ubuntu-latest
runs-on: cx-public-ubuntu-x64
steps:
- name: Rebase conflicting Dependabot PRs
run: |
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/pr-name-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@ on:
push:
branches: main # check how it can be always the default, either master or main or whatever

permissions:
contents: read

jobs:
validate_jira_key:
runs-on: ubuntu-latest
runs-on: cx-public-ubuntu-x64
steps:
- name: Validate Jira Key
if: ${{ github.event_name != 'push' }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
tag-and-release:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
runs-on: cx-public-ubuntu-x64
steps:
- name: Checkout the repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
git push origin $new_tag

- name: Create release from tag
uses: actions/create-release@v1
uses: actions/create-release@0cb9c9b65d5d1901c1f53e5e66eaf4afd303e70e # v1.1.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
Expand Down
Loading