-
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 (#1329)
* Renovate Update Patch & Minor Updates * upgrade lock * fix case of FROM AS lines --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Andrew Pearce <[email protected]>
- Loading branch information
1 parent
721e172
commit 3efc09e
Showing
37 changed files
with
430 additions
and
329 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].10 | ||
uses: github/codeql-action/[email protected].11 | ||
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].10 | ||
uses: github/codeql-action/[email protected].11 | ||
|
||
# ℹ️ 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].10 | ||
uses: github/codeql-action/[email protected].11 |
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].10 | ||
uses: github/codeql-action/[email protected].11 | ||
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 |
---|---|---|
|
@@ -49,16 +49,16 @@ jobs: | |
ref: ${{ inputs.checkout_tag }} | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3.0.0 | ||
uses: docker/setup-qemu-action@v3.1.0 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3.3.0 | ||
uses: docker/setup-buildx-action@v3.4.0 | ||
id: buildx_setup | ||
with: | ||
version: v0.15.1 | ||
platforms: linux/amd64,linux/arm64 | ||
|
||
- name: Build ${{ matrix.ecr_repository }} Image | ||
uses: docker/build-push-action@v6.2.0 | ||
uses: docker/build-push-action@v6.3.0 | ||
with: | ||
context: . | ||
file: ${{ matrix.path }} | ||
|
@@ -80,7 +80,7 @@ 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].10 | ||
uses: github/codeql-action/[email protected].11 | ||
if: always() | ||
with: | ||
sarif_file: 'trivy-results.sarif' | ||
|
@@ -101,7 +101,7 @@ jobs: | |
registries: 311462405659 | ||
- name: Push ${{ matrix.ecr_repository }} Image to ECR for PR | ||
if: ${{ github.workflow != 'Path To Live' }} | ||
uses: docker/build-push-action@v6.2.0 | ||
uses: docker/build-push-action@v6.3.0 | ||
with: | ||
context: . | ||
file: ${{ matrix.path }} | ||
|
@@ -117,7 +117,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.2.0 | ||
uses: docker/build-push-action@v6.3.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.22.4-alpine as base | ||
FROM golang:1.22.5-alpine as base | ||
|
||
ARG ARCH=amd64 | ||
|
||
|
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 @@ | ||
FROM golang:1.22.4-alpine as build | ||
FROM golang:1.22.5-alpine as build | ||
|
||
WORKDIR /app | ||
|
||
|
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 @@ | ||
FROM golang:1.22.4-alpine as build | ||
FROM golang:1.22.5-alpine as build | ||
|
||
RUN apk add zip | ||
|
||
|
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 @@ | ||
FROM golang:1.22.4-alpine as build-env | ||
FROM golang:1.22.5-alpine as build-env | ||
|
||
RUN apk --no-cache add openssl | ||
|
||
|
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 @@ | ||
FROM golang:1.22.4-alpine as build-env | ||
FROM golang:1.22.5-alpine as build-env | ||
|
||
RUN apk --no-cache add openssl | ||
|
||
|
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.