Skip to content

Commit 14e8eaa

Browse files
chore(deps): update all non-major dependencies
1 parent 349b035 commit 14e8eaa

File tree

6 files changed

+99
-166
lines changed

6 files changed

+99
-166
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ jobs:
2222
name: ${{ matrix.label }}
2323
runs-on: ${{ matrix.image }}
2424
steps:
25-
- uses: actions/checkout@v4.2.2
25+
- uses: actions/checkout@v4.3.1
2626

2727
- name: Install Nix
2828
uses: DeterminateSystems/nix-installer-action@c723f3a885e3f1d866d91f4f0c33dd44b1fc7c60 # v18
2929
continue-on-error: true # Self-hosted runners already have Nix installed
3030

3131
- name: Set up QEMU
32-
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
32+
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130 # v3.7.0
3333
if: matrix.system == 'aarch64-linux'
3434

3535
- name: Generate System Flags
@@ -60,7 +60,7 @@ jobs:
6060
outputs:
6161
matrix: ${{ steps.set-matrix.outputs.matrix }}
6262
steps:
63-
- uses: actions/checkout@v4.2.2
63+
- uses: actions/checkout@v4.3.1
6464

6565
- name: Install Nix
6666
uses: DeterminateSystems/nix-installer-action@c723f3a885e3f1d866d91f4f0c33dd44b1fc7c60 # v18
@@ -98,7 +98,7 @@ jobs:
9898
run: |
9999
sudo chown root:root /nix
100100
101-
- uses: actions/checkout@v4.2.2
101+
- uses: actions/checkout@v4.3.1
102102

103103
- name: Install Nix
104104
uses: DeterminateSystems/nix-installer-action@c723f3a885e3f1d866d91f4f0c33dd44b1fc7c60 # v18

.github/workflows/linters.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v4.2.2
13+
- uses: actions/checkout@v4.3.1
1414

1515
- name: Install Nix
1616
uses: DeterminateSystems/nix-installer-action@c723f3a885e3f1d866d91f4f0c33dd44b1fc7c60 # v18

.github/workflows/manual-stable.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: github.repository == 'zhaofengli/colmena'
1717

1818
steps:
19-
- uses: actions/checkout@v4.2.2
19+
- uses: actions/checkout@v4.3.1
2020

2121
- name: Install Nix
2222
uses: DeterminateSystems/nix-installer-action@c723f3a885e3f1d866d91f4f0c33dd44b1fc7c60 # v18
@@ -39,7 +39,7 @@ jobs:
3939
run: nix build .#manual -L
4040

4141
- name: Deploy manual
42-
uses: JamesIves/github-pages-deploy-action@6c2d9db40f9296374acc17b90404b6e8864128c8 # v4.7.3
42+
uses: JamesIves/github-pages-deploy-action@9d877eea73427180ae43cf98e8914934fe157a1a # v4.7.6
4343
with:
4444
branch: gh-pages
4545
folder: result
@@ -53,7 +53,7 @@ jobs:
5353
if: ${{ env.api_version == env.latest_stable_api }}
5454

5555
- name: Deploy redirect farm
56-
uses: JamesIves/github-pages-deploy-action@6c2d9db40f9296374acc17b90404b6e8864128c8 # v4.7.3
56+
uses: JamesIves/github-pages-deploy-action@9d877eea73427180ae43cf98e8914934fe157a1a # v4.7.6
5757
with:
5858
branch: gh-pages
5959
folder: result-redirectFarm

.github/workflows/manual.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: github.repository == 'zhaofengli/colmena'
1717

1818
steps:
19-
- uses: actions/checkout@v4.2.2
19+
- uses: actions/checkout@v4.3.1
2020

2121
- name: Install Nix
2222
uses: DeterminateSystems/nix-installer-action@c723f3a885e3f1d866d91f4f0c33dd44b1fc7c60 # v18
@@ -33,7 +33,7 @@ jobs:
3333
run: nix build .#manual -L
3434

3535
- name: Deploy manual
36-
uses: JamesIves/github-pages-deploy-action@6c2d9db40f9296374acc17b90404b6e8864128c8 # v4.7.3
36+
uses: JamesIves/github-pages-deploy-action@9d877eea73427180ae43cf98e8914934fe157a1a # v4.7.6
3737
with:
3838
branch: gh-pages
3939
folder: result
@@ -48,7 +48,7 @@ jobs:
4848
run: nix build .#manual.redirectFarm -L
4949

5050
- name: Deploy redirect farm
51-
uses: JamesIves/github-pages-deploy-action@6c2d9db40f9296374acc17b90404b6e8864128c8 # v4.7.3
51+
uses: JamesIves/github-pages-deploy-action@9d877eea73427180ae43cf98e8914934fe157a1a # v4.7.6
5252
with:
5353
branch: gh-pages
5454
folder: result-redirectFarm

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: ${{ matrix.os.label }}
1414
runs-on: ${{ matrix.os.image }}
1515
steps:
16-
- uses: actions/checkout@v4.2.2
16+
- uses: actions/checkout@v4.3.1
1717
with:
1818
fetch-depth: 0
1919

0 commit comments

Comments
 (0)