chore(ci): Update actions/checkout to v3

This commit is contained in:
TwiN 2022-06-18 12:58:26 -04:00
parent 5be1465b13
commit e4c9ad8796
3 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ jobs:
with: with:
go-version: 1.18 go-version: 1.18
- name: Check out code into the Go module directory - name: Check out code into the Go module directory
uses: actions/checkout@v2 uses: actions/checkout@v3
- name: Build binary to make sure it works - name: Build binary to make sure it works
run: go build -mod vendor run: go build -mod vendor
- name: Test - name: Test

View File

@ -12,7 +12,7 @@ jobs:
timeout-minutes: 45 timeout-minutes: 45
steps: steps:
- name: Check out code - name: Check out code
uses: actions/checkout@v2 uses: actions/checkout@v3
- name: Get image repository - name: Get image repository
run: echo IMAGE_REPOSITORY=$(echo ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV run: echo IMAGE_REPOSITORY=$(echo ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV
- name: Set up QEMU - name: Set up QEMU

View File

@ -9,7 +9,7 @@ jobs:
timeout-minutes: 45 timeout-minutes: 45
steps: steps:
- name: Check out code - name: Check out code
uses: actions/checkout@v2 uses: actions/checkout@v3
- name: Get image repository - name: Get image repository
run: echo IMAGE_REPOSITORY=$(echo ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV run: echo IMAGE_REPOSITORY=$(echo ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV
- name: Get the release - name: Get the release