Skip to content

Bump actions/checkout from 3.5.3 to 3.6.0 #1368

Bump actions/checkout from 3.5.3 to 3.6.0

Bump actions/checkout from 3.5.3 to 3.6.0 #1368

Workflow file for this run

name: Tornjak CI
on: [push, pull_request]
jobs:
tornjak-build:
runs-on: ubuntu-latest
steps:
- name: Show trigger info
run: |
cat <<EOF >>"${GITHUB_STEP_SUMMARY}"
# Workflow job info
- 🎉 The job was automatically triggered by a ${{ github.event_name }} event.
- 🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!
- 🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}.
EOF
- name: Check out repository code
uses: actions/checkout@v3.6.0
- name: Install Golang
uses: actions/setup-go@v4.1.0
with:
go-version-file: go.mod
check-latest: true
cache: true
- uses: actions/setup-node@v3.8.0
with:
node-version: '18'
- name: Download modules
run: go mod download
- name: golangci-lint
uses: golangci/golangci-lint-action@v3.7.0
with:
version: v1.53
args: --timeout 7m
- name: Build binaries
run: make binaries
- name: Build images
run: make images
- name: Print job result
run: |
cat <<EOF >>"${GITHUB_STEP_SUMMARY}"
- 🍏 This job's status is ${{ job.status }}.
EOF