Skip to content

Commit 074dbfd

Browse files
authored
Merge pull request #6368 from oasisprotocol/dependabot/github_actions/github-actions-5822fd79f6
ci: bump the github-actions group across 1 directory with 6 updates
2 parents 3e7a77e + 2dead72 commit 074dbfd

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.github/workflows/ci-lint.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- name: Checkout code
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
with:
3232
# Check out pull request's HEAD commit instead of the merge commit to
3333
# prevent gitlint from failing due to too long commit message titles,
@@ -36,15 +36,15 @@ jobs:
3636
# Fetch all history so gitlint can check the relevant commits.
3737
fetch-depth: "0"
3838
- name: Set up Python 3
39-
uses: actions/setup-python@v5
39+
uses: actions/setup-python@v6
4040
with:
4141
python-version: "3.x"
4242
- name: Set up Node.js 12
43-
uses: actions/setup-node@v4
43+
uses: actions/setup-node@v6
4444
with:
4545
node-version: "12.x"
4646
- name: Set up Go
47-
uses: actions/setup-go@v5
47+
uses: actions/setup-go@v6
4848
with:
4949
go-version: ">=1.25.3"
5050
- name: Set up Rust
@@ -97,7 +97,7 @@ jobs:
9797
# Always run this step so that all linting errors can be seen at once.
9898
if: always()
9999
- name: Ensure a clean code checkout
100-
uses: actions/checkout@v4
100+
uses: actions/checkout@v5
101101
with:
102102
clean: true
103103
if: always()

.github/workflows/ci-reproducibility.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
build_number: [1, 2]
3232
steps:
3333
- name: Checkout code
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535
with:
3636
# NOTE: We make a git checkout to a unique directory for each build to
3737
# catch reproducibility issues with code in different local paths.
3838
path: build${{ matrix.build_number }}
3939
- name: Set up Go
40-
uses: actions/setup-go@v5
40+
uses: actions/setup-go@v6
4141
with:
4242
go-version: ">=1.25.3"
4343
- name: Set up Rust
@@ -92,7 +92,7 @@ jobs:
9292
OASIS_NODE_MAKE_PATH: go/oasis-node/oasis-node
9393
OASIS_NODE_GORELEASER_PATH: dist/oasis-node_linux_amd64_v1/oasis-node
9494
- name: Upload checksums
95-
uses: actions/upload-artifact@v4
95+
uses: actions/upload-artifact@v5
9696
with:
9797
name: oasis-node-SHA256SUMs-build${{ matrix.build_number }}
9898
path: oasis-node-SHA256SUMs
@@ -105,12 +105,12 @@ jobs:
105105
runs-on: ubuntu-latest
106106
steps:
107107
- name: Download checksums for build 1
108-
uses: actions/download-artifact@v4
108+
uses: actions/download-artifact@v6
109109
with:
110110
name: oasis-node-SHA256SUMs-build1
111111
path: oasis-node-SHA256SUMs-build1
112112
- name: Download checksum for build 2
113-
uses: actions/download-artifact@v4
113+
uses: actions/download-artifact@v6
114114
with:
115115
name: oasis-node-SHA256SUMs-build2
116116
path: oasis-node-SHA256SUMs-build2

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ubuntu-latest
4242
steps:
4343
- name: Checkout code
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v5
4545
with:
4646
# Check out pull request's HEAD commit instead of the merge commit.
4747
ref: ${{ github.event.pull_request.head.sha }}

.github/workflows/release-dev.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-22.04
2424
steps:
2525
- name: Checkout code
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727
with:
2828
# Fetch all history as the recommended way to fetch all tags and
2929
# branches of the project.
@@ -33,7 +33,7 @@ jobs:
3333
# https://github.com/actions/checkout#fetch-all-history-for-all-tags-and-branches
3434
fetch-depth: 0
3535
- name: Set up Go
36-
uses: actions/setup-go@v5
36+
uses: actions/setup-go@v6
3737
with:
3838
go-version: ">=1.25.3"
3939
- name: Set up Rust
@@ -75,7 +75,7 @@ jobs:
7575
run: |
7676
make release-build
7777
- name: Upload release artifacts
78-
uses: actions/upload-artifact@v4
78+
uses: actions/upload-artifact@v5
7979
with:
8080
name: oasis-core-dev-release
8181
path: dist/*.tar.gz

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-22.04
2626
steps:
2727
- name: Checkout code
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929
with:
3030
# Fetch all history as the recommended way to fetch all tags and
3131
# branches of the project.
@@ -36,7 +36,7 @@ jobs:
3636
fetch-depth: 0
3737

3838
- name: Set up Go
39-
uses: actions/setup-go@v5
39+
uses: actions/setup-go@v6
4040
with:
4141
go-version: ">=1.25.3"
4242

0 commit comments

Comments
 (0)