Skip to content

Commit

Permalink
Update for v2.9 release
Browse files Browse the repository at this point in the history
* Also fix GitHub Actions 404 errors when running apt install (See actions/runner-images#2924)
  • Loading branch information
pbatard committed May 24, 2023
1 parent 116552b commit 9d3a8c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
id: set_version
run: echo "version=$(git describe --tags --abbrev=0)" >> $GITHUB_OUTPUT
- name: Set up Linux environment
run: sudo apt install gcc-aarch64-linux-gnu
run: |
sudo apt-get update
sudo apt-get install gcc-aarch64-linux-gnu
- name: Download and extract TF-A release
run: |
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
Expand Down
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ altered from the ones one would build locally using the official TF-A source.

# Current version

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

# Binary validation

Expand Down

0 comments on commit 9d3a8c9

Please sign in to comment.