Skip to content

Commit 46283dd

Browse files
authored
github action upgrades (#2075)
* Windows workflow: bump cmake version * Actions: update all workflows to checkout@v4
1 parent 06a244b commit 46283dd

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="gcc-arm-embedded" version="10.2.1" />
4-
<package id="cmake" version="3.25.2" installArguments="ADD_CMAKE_TO_PATH=System" />
4+
<package id="cmake" version="3.31.0" installArguments="ADD_CMAKE_TO_PATH=System" />
55
<package id="mingw" version="12.2.0" />
66
<package id="ninja" version="1.11.1" />
77
</packages>

.github/workflows/cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
mkdir -p "${{ github.workspace }}"
2424
2525
- name: Checkout repo
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v4
2727

2828
- name: Checkout submodules
2929
run: git submodule update --init

.github/workflows/macOS.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
rm -rf "${{ github.workspace }}"
1818
mkdir -p "${{ github.workspace }}"
1919
- name: Checkout repo
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121
- name: Checkout submodules
2222
run: git submodule update --init
2323
- name: Install dependencies

.github/workflows/multi-gcc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
mkdir -p "${{ github.workspace }}"
2121
2222
- name: Checkout repo
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v4
2424

2525
- name: Checkout submodules
2626
run: git submodule update --init

.github/workflows/scripts/generate_multi_gcc_workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
mkdir -p "${{ github.workspace }}"
5656
5757
- name: Checkout repo
58-
uses: actions/checkout@v2
58+
uses: actions/checkout@v4
5959
6060
- name: Checkout submodules
6161
run: git submodule update --init

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
echo "Cleaning up previous run"
1818
rm -rf "${{ github.workspace }}/pico-sdk"
1919
- name: Checkout repo
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121
- name: Checkout submodules
2222
run: git submodule update --init
2323
- name: Install dependencies

0 commit comments

Comments
 (0)