ROOTPLOIT
Server: LiteSpeed
System: Linux in-mum-web1878.main-hosting.eu 5.14.0-570.21.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 11 07:22:35 EDT 2025 x86_64
User: u435929562 (435929562)
PHP: 7.4.33
Disabled: system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail
Upload Files
File: //opt/go/pkg/mod/gopkg.in/[email protected]/.github/workflows/go.yaml
---
name: Go
on: [push, pull_request]
jobs:
  test:
    name: Test
    runs-on: ubuntu-20.04
    strategy:
      fail-fast: false
      matrix:
        go:
        - "1.5"
        - "1.6"
        - "1.7"
        - "1.8"
        - "1.9"
        - "1.10"
        - "1.11"
        - "1.12"
        - "1.13"
        - "1.14"
        - "1.15"
        - "1.16.0-beta1"
        - "tip"
    env:
      GOPATH: ${{ github.workspace }}/go
    steps:
    - name: Check out code into the Go module directory
      uses: actions/checkout@v2
      with:
        path: ${{ github.workspace }}/go/src/gopkg.in/yaml.v3
    - name: Set up Go ${{ matrix.go }}
      if: matrix.go != 'tip'
      uses: actions/setup-go@v2
      with:
        go-version: ${{ matrix.go }}
        stable: false
    - name: Set up Go ${{ matrix.go }}
      if: matrix.go == 'tip'
      run: |
        export GOROOT_BOOTSTRAP=`go env GOROOT`
        export GOROOT=$HOME/gotip
        mkdir $HOME/gotip
        cd $HOME/gotip

        curl -s 'https://go.googlesource.com/go/+/refs/heads/master?format=JSON' | awk '/"commit"/{print substr($2,2,40);exit}' >HEAD
        awk '{printf("gotip-%s",substr($0,0,7))}' <HEAD >VERSION

        curl -s -o go.tar.gz https://go.googlesource.com/go/+archive/`cat HEAD`.tar.gz
        tar xfz go.tar.gz

        cd src
        bash make.bash

        echo "GOROOT=$GOROOT" >> $GITHUB_ENV
        echo "$GOROOT/bin" >> $GITHUB_PATH
    - run: go version
    - run: go get -t ./...
      working-directory: ${{ github.workspace }}/go/src/gopkg.in/yaml.v3
    - run: go test .
      working-directory: ${{ github.workspace }}/go/src/gopkg.in/yaml.v3