Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Check out pull request's HEAD commit instead of the merge commit to
# prevent gitlint from failing due to too long commit message titles,
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
# Always run this step so that all linting errors can be seen at once.
if: always()
- name: Ensure a clean code checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
clean: true
if: always()
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci-reproducibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
build_number: [1, 2]
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# NOTE: We make a git checkout to a unique directory for each build to
# catch reproducibility issues with code in different local paths.
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
OASIS_NODE_MAKE_PATH: go/oasis-node/oasis-node
OASIS_NODE_GORELEASER_PATH: dist/oasis-node_linux_amd64_v1/oasis-node
- name: Upload checksums
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: oasis-node-SHA256SUMs-build${{ matrix.build_number }}
path: oasis-node-SHA256SUMs
Expand All @@ -105,12 +105,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download checksums for build 1
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: oasis-node-SHA256SUMs-build1
path: oasis-node-SHA256SUMs-build1
- name: Download checksum for build 2
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: oasis-node-SHA256SUMs-build2
path: oasis-node-SHA256SUMs-build2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Check out pull request's HEAD commit instead of the merge commit.
ref: ${{ github.event.pull_request.head.sha }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Fetch all history as the recommended way to fetch all tags and
# branches of the project.
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
run: |
make release-build
- name: Upload release artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: oasis-core-dev-release
path: dist/*.tar.gz
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Fetch all history as the recommended way to fetch all tags and
# branches of the project.
Expand Down
Loading