diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f456638f..d32af41c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,10 +19,10 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v6 with: go-version: ${{ matrix.go-version }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fdbad9bd4..380d9b83e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,12 +14,12 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 - name: Install Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v6 with: go-version: 1.24.x @@ -32,7 +32,7 @@ jobs: runs-on: 'ubuntu-latest' steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: # https://github.com/marketplace/actions/goreleaser-action#usage # note the fetch-depth: 0 input in Checkout step. It is required for @@ -46,7 +46,7 @@ jobs: password: ${{ secrets.DOCKER_PASSWORD }} - name: Install Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v6 with: go-version: 1.24.x @@ -65,7 +65,7 @@ jobs: runs-on: 'ubuntu-latest' steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: # fetch-depth: 0 fetches all history for all branches and tags fetch-depth: 0 @@ -74,7 +74,8 @@ jobs: uses: snapcore/action-build@v1 id: build - - uses: snapcore/action-publish@master + - name: Publish snap + uses: snapcore/action-publish@v1 env: SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAP_TOKEN }} with: diff --git a/.github/workflows/snapcraft-candidate.yml b/.github/workflows/snapcraft-candidate.yml index be90545ac..e1ee58b7c 100644 --- a/.github/workflows/snapcraft-candidate.yml +++ b/.github/workflows/snapcraft-candidate.yml @@ -11,7 +11,7 @@ jobs: runs-on: 'ubuntu-latest' steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v5 with: # fetch-depth: 0 fetches all history for all branches and tags fetch-depth: 0 @@ -20,7 +20,8 @@ jobs: uses: snapcore/action-build@v1 id: build - - uses: snapcore/action-publish@master + - name: Publish snap + uses: snapcore/action-publish@v1 env: SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAP_TOKEN }} with: diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml index bcf7fd2ee..652411004 100644 --- a/.github/workflows/typos.yml +++ b/.github/workflows/typos.yml @@ -14,8 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Actions Repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Check spelling - uses: crate-ci/typos@v1.23.2 - + uses: crate-ci/typos@v1.38.1