-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renovate Update Patch & Minor Updates (#1367)
* Renovate Update Patch & Minor Updates * add go mod tidy --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Alex Saunders <[email protected]>
- Loading branch information
1 parent
953027a
commit e5bb862
Showing
35 changed files
with
195 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,7 +42,7 @@ jobs: | |
|
||
# Initializes the CodeQL tools for scanning. | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/[email protected].11 | ||
uses: github/codeql-action/[email protected].14 | ||
with: | ||
languages: ${{ matrix.language }} | ||
# If you wish to specify custom queries, you can do so here or in a config file. | ||
|
@@ -53,7 +53,7 @@ jobs: | |
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java). | ||
# If this step fails, then you should remove it and run the build manually (see below) | ||
- name: Autobuild | ||
uses: github/codeql-action/[email protected].11 | ||
uses: github/codeql-action/[email protected].14 | ||
|
||
# ℹ️ Command-line programs to run using the OS shell. | ||
# 📚 https://git.io/JvXDl | ||
|
@@ -67,4 +67,4 @@ jobs: | |
# make release | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/[email protected].11 | ||
uses: github/codeql-action/[email protected].14 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,6 +32,6 @@ jobs: | |
with: | ||
sarif_file: tfsec.sarif | ||
- name: Upload SARIF file | ||
uses: github/codeql-action/[email protected].11 | ||
uses: github/codeql-action/[email protected].14 | ||
with: | ||
sarif_file: tfsec.sarif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,9 +54,9 @@ jobs: | |
ref: ${{ inputs.checkout_tag }} | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3.1.0 | ||
uses: docker/setup-qemu-action@v3.2.0 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3.4.0 | ||
uses: docker/setup-buildx-action@v3.5.0 | ||
id: buildx_setup | ||
with: | ||
version: v0.15.1 | ||
|
@@ -78,7 +78,7 @@ jobs: | |
registries: 311462405659 | ||
|
||
- name: Build ${{ matrix.ecr_repository }} Image | ||
uses: docker/build-push-action@v6.3.0 | ||
uses: docker/build-push-action@v6.5.0 | ||
with: | ||
context: . | ||
file: ${{ matrix.path }} | ||
|
@@ -103,14 +103,14 @@ jobs: | |
output: 'trivy-results.sarif' | ||
- name: Upload Trivy scan results to GitHub Security tab for ${{ matrix.ecr_repository }} | ||
id: trivy_upload_sarif | ||
uses: github/codeql-action/[email protected].11 | ||
uses: github/codeql-action/[email protected].14 | ||
if: always() | ||
with: | ||
sarif_file: 'trivy-results.sarif' | ||
|
||
- name: Push ${{ matrix.ecr_repository }} Image to ECR for PR | ||
if: ${{ github.workflow != 'Path To Live' }} | ||
uses: docker/build-push-action@v6.3.0 | ||
uses: docker/build-push-action@v6.5.0 | ||
with: | ||
context: . | ||
file: ${{ matrix.path }} | ||
|
@@ -129,7 +129,7 @@ jobs: | |
|
||
- name: Push ${{ matrix.ecr_repository }} Image to ECR for Path to Live | ||
if: ${{ github.workflow == 'Path To Live' }} | ||
uses: docker/build-push-action@v6.3.0 | ||
uses: docker/build-push-action@v6.5.0 | ||
with: | ||
context: . | ||
file: ${{ matrix.path }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,10 +33,11 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
go-version: '^1.20' | ||
cache-dependency-path: "**/*.sum" | ||
cache-dependency-path: '**/go.sum' | ||
|
||
- name: Download pact | ||
run: | | ||
go mod tidy | ||
go install github.com/pact-foundation/pact-go/v2 | ||
mkdir -p ~/pact-lib | ||
pact-go -l DEBUG -d ~/pact-lib install | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
requests==2.32.3 | ||
boto3==1.34.143 | ||
boto3==1.34.149 | ||
aws-xray-sdk==2.14.0 | ||
awslambdaric==2.0.12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.