Skip to content
Merged

Dev #389

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
6 changes: 3 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every week
interval: "weekly"
# Check for updates to GitHub Actions every quarter
interval: "quarterly"
labels:
- "Release Not Needed"
target-branch: "dev"
target-branch: "dev"
4 changes: 2 additions & 2 deletions .github/workflows/change-file-in-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:

steps:
- name: Checkout PR code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Get List of Changed Files
id: changed-files
uses: tj-actions/changed-files@4edd678ac3f81e2dc578756871e4d00c19191daf #v45
uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c #v45

- name: Check for Change File(s) in .autover/changes/
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
parse-json-secrets: true
# Checkout a full clone of the repo
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f #v4.2.2
with:
fetch-depth: '0'
token: ${{ env.AWS_SECRET_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/semgrep-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
if: (github.actor != 'dependabot[bot]')
steps:
# Fetch project source
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
- uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f #v4.2.2

- run: semgrep ci --sarif > semgrep.sarif
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sync-master-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
parse-json-secrets: true
# Checkout a full clone of the repo
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f #v4.2.2
with:
ref: dev
fetch-depth: 0
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
steps:
# Checkout a full clone of the repo
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f #v4.2.2
with:
ref: releases/next-release
fetch-depth: 0
Expand Down
Loading