Skip to content

Commit 9d3a8c9

Browse files
committed
Update for v2.9 release
* Also fix GitHub Actions 404 errors when running apt install (See actions/runner-images#2924)
1 parent 116552b commit 9d3a8c9

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ jobs:
1919
id: set_version
2020
run: echo "version=$(git describe --tags --abbrev=0)" >> $GITHUB_OUTPUT
2121
- name: Set up Linux environment
22-
run: sudo apt install gcc-aarch64-linux-gnu
22+
run: |
23+
sudo apt-get update
24+
sudo apt-get install gcc-aarch64-linux-gnu
2325
- name: Download and extract TF-A release
2426
run: |
2527
curl -L https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git/snapshot/trusted-firmware-a-${{steps.set_version.outputs.version}}.tar.gz -o trusted-firmware-a-${{steps.set_version.outputs.version}}.tar.gz

Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ altered from the ones one would build locally using the official TF-A source.
1717

1818
# Current version
1919

20-
The version of TF-A being built is 2.8, which was released on 2022-11-21.
20+
The version of TF-A being built is 2.9, which was released on 2023-05-23.
2121

2222
# Binary validation
2323

0 commit comments

Comments
 (0)