diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 27c0011..ea2ec44 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 42e323b..0a4e902 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.22.2' + go-version: '1.23.0' - name: Unit tests run: make unit_test diff --git a/go.mod b/go.mod index 52097de..d09288d 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/PACZone/wrapto -go 1.22.2 +go 1.23.0 require ( github.com/ethereum/go-ethereum v1.14.7