Skip to content

Bump golang.org/x/crypto from 0.28.0 to 0.30.0 #154

Bump golang.org/x/crypto from 0.28.0 to 0.30.0

Bump golang.org/x/crypto from 0.28.0 to 0.30.0 #154

Workflow file for this run

---
#################################
#################################
## Super Linter GitHub Actions ##
#################################
#################################
name: Lint Code Base
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#
#############################
# Start the job on all push #
#############################
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
workflow_dispatch:
permissions: read-all
###############
# Set the Job #
###############
jobs:
build:
# Name the Job
name: Lint Code Base
# Set the agent to run on
runs-on: ubuntu-latest
permissions:
statuses: write
##################
# Load all steps #
##################
steps:
- name: Set variables
id: setvars
run: |
if [[ "${{ github.event_name }}" == "workflow_dispatch" ]]
then
echo "VALIDATE_ALL_CODEBASE=true" >> "$GITHUB_ENV"
else
echo "VALIDATE_ALL_CODEBASE=false" >> "$GITHUB_ENV"
fi
cat "$GITHUB_ENV"
##########################
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v4
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
################################
# Run Linter against code base #
################################
- name: Lint Code Base
uses: github/super-linter@v6
env:
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_GO: false