Skip to content
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
images: ${{ steps.set-matrix.outputs.images }}
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: set matrix
Expand All @@ -29,7 +29,7 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set Env
run: |
echo "TOOL=$(jq -r .name ${{ matrix.image }}/package.json)" >> $GITHUB_ENV
Expand Down Expand Up @@ -58,9 +58,9 @@ jobs:
fi
- name: Log in to the Container registry
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ${{ env.REGISTRY }} --username ${{ github.actor }} --password-stdin
- uses: docker/setup-qemu-action@v2
- uses: docker/setup-buildx-action@v2
- uses: docker/build-push-action@v4
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v6
id: build
with:
context: ${{ matrix.image }}
Expand All @@ -74,7 +74,7 @@ jobs:
# Snyk can be used to break the build when it detects vulnerabilities.
# In this case we want to upload the issues to GitHub Code Scanning
continue-on-error: true
uses: snyk/actions/docker@0.4.0
uses: snyk/actions/docker@v0
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-clean.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
images: ${{ steps.set-matrix.outputs.images }}
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: set matrix
Expand All @@ -29,7 +29,7 @@ jobs:
matrix:
image: ${{ fromJson(needs.list-images.outputs.images) }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set Env
run: |
echo "TOOL=$(jq -r .name ${{ matrix.image }}/package.json)" >> $GITHUB_ENV
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
import_syntax_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Check import syntax
run: |
EXITCODE=0
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
docker_pull_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Ensure current SemVer'd docker images are being pulled
run: |
EXITCODE=0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sprocket-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
sprocket_lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Run 'sprocket lint'
uses: stjude-rust-labs/sprocket-action@main
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-inputs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
validate_inputs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Validate Reference Inputs
uses: stjude-rust-labs/sprocket-action@main
with:
Expand Down
Loading