[Snyk] Security upgrade node from 18-alpine3.17 to 20.8.0-alpine3.17 #309
Workflow file for this run
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
name: radix-public-site-pr | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build docker image | |
working-directory: public-site | |
env: | |
REF: ${{ github. sha }} | |
run: docker build -t radix-public-site:${REF##*/} . | |
validate-radixconfig: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Get Azure principal token for Radix' | |
run: | | |
echo "APP_SERVICE_ACCOUNT_TOKEN=hello-world" >> $GITHUB_ENV | |
- uses: actions/checkout@v4 | |
- name: 'Validate public-site' | |
uses: equinor/radix-github-actions@v1 | |
with: | |
args: validate radix-config --config-file radixconfig.yaml | |
- name: 'Validate oauth example radix-app' | |
uses: equinor/radix-github-actions@v1 | |
with: | |
args: validate radix-config --config-file examples/radix-example-oauth-proxy/radixconfig.yaml |