diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 6eb097132a..9d89fe7ded 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -20,14 +20,14 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Install Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: # In order: # * Module download cache diff --git a/.github/workflows/commit-lint.yml b/.github/workflows/commit-lint.yml index 4d16ac7fb2..671331baa1 100644 --- a/.github/workflows/commit-lint.yml +++ b/.github/workflows/commit-lint.yml @@ -19,13 +19,13 @@ jobs: os: [ubuntu-latest] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: | ~/.npm diff --git a/.github/workflows/evm-tests.yml b/.github/workflows/evm-tests.yml index 59102195fe..7f341b8bdc 100644 --- a/.github/workflows/evm-tests.yml +++ b/.github/workflows/evm-tests.yml @@ -20,14 +20,14 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Install Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: # In order: # * Module download cache diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index ff12eb4bec..5c909a4e16 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -19,7 +19,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Truffle test run: | diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index b75d50479b..7a50f16b3e 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -20,14 +20,14 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Install Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: # In order: # * Module download cache diff --git a/.github/workflows/nancy.yml b/.github/workflows/nancy.yml index e7a901bc89..1878f33c3e 100644 --- a/.github/workflows/nancy.yml +++ b/.github/workflows/nancy.yml @@ -23,7 +23,7 @@ jobs: uses: actions/checkout@v4 - name: Set up Go 1.x in order to write go.list file - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index 71d80a1830..57f737f785 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/pre-release.yml @@ -20,14 +20,14 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: # In order: # * Module download cache @@ -123,7 +123,7 @@ jobs: run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 # ============================== # Download artifacts @@ -171,7 +171,7 @@ jobs: mv ./windows/geth.exe ./windows/geth_windows.exe - name: Create Release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1b20a3fb81..e0d84e793d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,14 +19,14 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: # In order: # * Module download cache @@ -123,7 +123,7 @@ jobs: run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 # ============================== # Download artifacts @@ -179,7 +179,7 @@ jobs: mv ./windows/geth.exe ./windows/geth_windows.exe - name: Create Release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token with: diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 4455e57b44..be9b134864 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -20,14 +20,14 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Install Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: # In order: # * Module download cache