Flatpak update is stuck on version 37 when version 40 installed

Need help for flatpak is not updating in Silverblue 40. Any assistance with this matter is greatly appreciated.

State: idle
Deployments:
● fedora:fedora/40/x86_64/silverblue
                  Version: 40.20240324.n.0 (2024-03-24T08:09:49Z)
                   Commit: 879539f0fdfc57e4be08f0528be198b0714b9a177982e0543b5b70e3935edf57
             GPGSignature: Valid signature by 115DF9AEF857853EE8445D0A0727707EA15B79CC

  fedora:fedora/40/x86_64/silverblue
                  Version: 40.20240309.n.0 (2024-03-09T08:12:10Z)
                   Commit: 0ed1c114ec2ad51b342d437b3c46dc65edff9c8873d7784da888767f35c2c1d8
             GPGSignature: Valid signature by 115DF9AEF857853EE8445D0A0727707EA15B79CC

  fedora:fedora/39/x86_64/silverblue
                  Version: 39.20240307.0 (2024-03-07T00:36:27Z)
                   Commit: 26757e76d9481a2fff39d3adbbf6104408915beac8cac8262cb77d74513b0e93
             GPGSignature: Valid signature by E8F23996F23218640CB44CBE75CF5AC418B8E74C
                   Pinned: yes

  fedora:fedora/38/x86_64/silverblue
                  Version: 38.20240307.0 (2024-03-07T00:54:34Z)
                   Commit: e029a36f55c9446cabcfd70a67310f08db92e2b6752ef4693e0ceae4aef79190
             GPGSignature: Valid signature by 6A51BBABBA3D5467B6171221809A8D7CEB10B464
                   Pinned: yes

  fedora:fedora/38/x86_64/silverblue
                  Version: 38.20240209.0 (2024-02-09T00:58:33Z)
               BaseCommit: c4a6f9f8d124a1b829bafb276f5428a110ebbab9343350b763e597f1cd9f9bf9
             GPGSignature: Valid signature by 6A51BBABBA3D5467B6171221809A8D7CEB10B464
            LocalPackages: rpmfusion-free-release-38-1.noarch
                           rpmfusion-nonfree-release-38-1.noarch
                   Pinned: yes
richard@fedora:~$ rpm-ostree update
2 metadata, 0 content objects fetched; 788 B transferred in 7 seconds; 0 bytes content written
No upgrade available.
richard@fedora:~$ flatpak update
Looking for updates…

Info: (pinned) runtime org.fedoraproject.Platform branch f37 is end-of-life, with reason:
   Fedora 37 runtime is no longer supported.

Nothing to do.
richard@fedora:~$ ```

That’s just an old runtime. You’ve apparently pinned it.

flatpak pin --remove runtime/org.fedoraproject.Platform/x86_64/f37

You have to specify the pattern to remove the same way it was added, so if that doesn’t work, check the output of flatpak pin for the exact pattern used.

Afterward, flatpak uninstall --unused should remove it.

1 Like

Thanks, Chris! That worked. -Richard