Skip to content

Commit

Permalink
update dependencies in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
jgadsden committed Sep 7, 2024
2 parents 0961105 + 6597ed9 commit 58ee999
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/housekeeping.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
output: 'trivy-results.sarif'

- name: Upload scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v3.25.1
uses: github/codeql-action/upload-sarif@v3.26.6
with:
sarif_file: 'trivy-results.sarif'

Expand All @@ -93,7 +93,7 @@ jobs:
ref: main

- name: Initialize CodeQL
uses: github/codeql-action/init@v3.25.1
uses: github/codeql-action/init@v3.26.6
with:
languages: 'javascript'
config-file: ./.github/codeql/codeql-config.yml
Expand All @@ -102,10 +102,10 @@ jobs:
# Prefix the list here with "+" to use these queries and those in the config file.

- name: CodeQL autobuild
uses: github/codeql-action/autobuild@v3.25.1
uses: github/codeql-action/autobuild@v3.26.6

- name: Perform vulnerability analysis
uses: github/codeql-action/analyze@v3.25.1
uses: github/codeql-action/analyze@v3.26.6

link_checker:
name: Link checker
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
uses: actions/[email protected]

- name: Initialize CodeQL
uses: github/codeql-action/init@v3.25.1
uses: github/codeql-action/init@v3.26.6
with:
languages: 'javascript'
config-file: ./.github/codeql/codeql-config.yml
Expand All @@ -139,10 +139,10 @@ jobs:
# Prefix the list here with "+" to use these queries and those in the config file.

- name: CodeQL autobuild
uses: github/codeql-action/autobuild@v3.25.1
uses: github/codeql-action/autobuild@v3.26.6

- name: Perform vulnerability analysis
uses: github/codeql-action/analyze@v3.25.1
uses: github/codeql-action/analyze@v3.26.6

build_docker_image:
name: Build docker image
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
- name: Build for amd64
id: docker_build
uses: docker/build-push-action@v6.5.0
uses: docker/build-push-action@v6.7.0
with:
context: ./
file: ./Dockerfile
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:
uses: actions/[email protected]

- name: Initialize CodeQL
uses: github/codeql-action/init@v3.25.1
uses: github/codeql-action/init@v3.26.6
with:
languages: 'javascript'
config-file: ./.github/codeql/codeql-config.yml
Expand All @@ -152,10 +152,10 @@ jobs:
# Prefix the list here with "+" to use these queries and those in the config file.

- name: CodeQL autobuild
uses: github/codeql-action/autobuild@v3.25.1
uses: github/codeql-action/autobuild@v3.26.6

- name: Perform vulnerability analysis
uses: github/codeql-action/analyze@v3.25.1
uses: github/codeql-action/analyze@v3.26.6

build_docker_image:
name: Build latest docker
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
# platform manifests not (yet) supported, so split out architectures
- name: Build for amd64 and push latest
id: docker_build_amd64
uses: docker/build-push-action@v6.5.0
uses: docker/build-push-action@v6.7.0
with:
context: ./
file: ./Dockerfile
Expand All @@ -208,7 +208,7 @@ jobs:

- name: Build for arm64 and push latest-arm64
id: docker_build_arm64
uses: docker/build-push-action@v6.5.0
uses: docker/build-push-action@v6.7.0
with:
context: ./
file: ./Dockerfile
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ jobs:
# platform manifests not (yet) supported, so split out architectures
- name: Build for amd64 and push to Docker Hub
id: docker_build_amd64
uses: docker/build-push-action@v6.5.0
uses: docker/build-push-action@v6.7.0
with:
context: ./
file: ./Dockerfile
Expand All @@ -394,7 +394,7 @@ jobs:

- name: Build for arm64 and push to Docker Hub
id: docker_build_arm64
uses: docker/build-push-action@v6.5.0
uses: docker/build-push-action@v6.7.0
with:
context: ./
file: ./Dockerfile
Expand Down

0 comments on commit 58ee999

Please sign in to comment.