diff options
author | sudoforge <no-reply@sudoforge.com> | 2024-07-19 07:21:01 -0700 |
---|---|---|
committer | sudoforge <9c001b67637a@sudoforge.com> | 2024-07-20 07:44:23 -0700 |
commit | eda0d6723978fa19711b538bf1e9641537959bb3 (patch) | |
tree | a55972531e7cc90d2134ebf86c06c09a7404b15a /.github/workflows/go.yml | |
parent | a4b8858668d44203f31e1d9cd675b02600d0ea3f (diff) | |
download | git-bug-eda0d6723978fa19711b538bf1e9641537959bb3.tar.gz |
feat: update action library versions
Change-Id: I957c6de57b3a9151e6d9ce8caba87f4e2c714846
Diffstat (limited to '.github/workflows/go.yml')
-rw-r--r-- | .github/workflows/go.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 2940c743..41635c5e 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -24,12 +24,12 @@ jobs: steps: - name: Set up Go ${{ matrix.node-version }} - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Build run: make @@ -48,12 +48,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Install Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: 1.19.4 - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Check Code Formatting run: find . -name "*.go" | while read line; do [ -z "$(gofmt -d "$line" | head)" ] || exit 1; done |