Skip to content
package

GitHub Action

Go modfile information

v1.1.0 Latest version

Go modfile information

package

Go modfile information

Get all go modfile information

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Go modfile information

uses: pawndev/[email protected]

Learn more about this action in pawndev/go-modfile-information

Choose a version

Fetch go mod information

Build Integration Test

Summary

This action will let you retrieve some information in your go.mod file and export it in github action variables. For now, only the go version and go module will be exported.

See the examples for how to use it

Inputs

Input Description Default value
modfile An example mandatory input go.mod

Outputs

Output Description
go_version Go version of the module
go_module Go module name

Examples

Or see this workflow

    ...
    - name: Get go mod info
      id: gomod
      uses: pawndev/[email protected]
      with:
        modfile: go.mod # optional default to `go.mod`
    - name: Print go mod information
      run: |
        echo "${{ steps.gomod.outputs.go_version }}"
        echo "${{ steps.gomod.outputs.go_module }}"

Using the optional input

with:
  modfile: other-go.mod

Testing locally

Be sure to have act locally and available il your $PATH. And then you can make test to launch the project locally.

Folder tests contains another go.mod file with old version format using only major and minor without the patch number 1.21.