diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 6cac701..b253bce 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,7 +13,7 @@ jobs: name: Lint Code Base steps: - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # Full git history is needed to get a proper list of changed files within `super-linter` fetch-depth: 0 diff --git a/.github/workflows/master-test.yml b/.github/workflows/master-test.yml index 60c601d..52b3978 100644 --- a/.github/workflows/master-test.yml +++ b/.github/workflows/master-test.yml @@ -16,7 +16,7 @@ jobs: with: go-version: ${{ matrix.go }} - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Fetch all tags run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* - name: Last tag diff --git a/.github/workflows/pr-test.yml b/.github/workflows/pr-test.yml index 7e6b9b9..7e6a4ed 100644 --- a/.github/workflows/pr-test.yml +++ b/.github/workflows/pr-test.yml @@ -13,7 +13,7 @@ jobs: with: go-version: ${{ matrix.go }} - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build run: go build ./... - name: Test