Skip to content

Commit

Permalink
chore(ci): upgrade workflow actions to latest versions (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderblue authored Aug 20, 2024
1 parent b6d086c commit ff36915
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: 1.18.x
go-version: 1.21.x

- name: Add GOBIN to PATH
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
shell: bash

- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Release
shell: bash
Expand All @@ -42,7 +42,7 @@ jobs:
echo ::set-output name=tag::$(git describe --abbrev=0 --tags)
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ steps.latest_tag.outputs.tag }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Basic Usage
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Test deployment marker
uses: ./
env:
Expand All @@ -30,7 +30,7 @@ jobs:
name: All Inputs
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Test deployment marker
uses: ./
env:
Expand Down

0 comments on commit ff36915

Please sign in to comment.