2727 build :
2828 name : Build template
2929 # Pin version of Ubuntu to avoid breaking changes
30- runs-on : ubuntu-22 .04
30+ runs-on : ubuntu-24 .04
3131 # Use reasonable timeout to avoid stuck workflows
3232 timeout-minutes : 10
3333 env :
@@ -37,18 +37,18 @@ jobs:
3737 contents : read
3838 steps :
3939 - name : Checkout code
40- uses : actions/checkout@v4.1.1
40+ uses : actions/checkout@v4.2.2
4141 - name : Setup Nix cache
42- uses : actions/cache@v4.0 .1
42+ uses : actions/cache@v4.2 .1
4343 id : cache-nix
4444 with :
4545 path : ${{ env.NIX_CACHE_DIR }}
4646 key : example-nix
4747 - name : Install Nix
48- uses : cachix/install-nix-action@v26
48+ uses : cachix/install-nix-action@v30
4949 with :
5050 github_access_token : ${{ github.token }}
51- install_url : https://releases.nixos.org/nix/nix-2.20.5 /install
51+ install_url : https://releases.nixos.org/nix/nix-2.26.2 /install
5252 # See: https://github.com/cachix/install-nix-action/issues/56
5353 - name : Import Nix store cache
5454 if : steps.cache-nix.outputs.cache-hit == 'true'
8686 archive.tar
8787 ./
8888 - name : Upload artifact
89- uses : actions/upload-artifact@v4.3.1
89+ uses : actions/upload-artifact@v4.6.0
9090 with :
91+ include-hidden-files : true
9192 name : build
9293 path : archive.tar
9394 # See: https://github.com/cachix/install-nix-action/issues/56
@@ -106,12 +107,12 @@ jobs:
106107 # Run only if build job succeeded
107108 needs : build
108109 # Pin version of Ubuntu to avoid breaking changes
109- runs-on : ubuntu-22 .04
110+ runs-on : ubuntu-24 .04
110111 # Use reasonable timeout to avoid stuck workflows
111112 timeout-minutes : 10
112113 steps :
113114 - name : Download artifact
114- 115+ 115116 with :
116117 name : build
117118 - name : Extract archive
@@ -128,7 +129,7 @@ jobs:
128129 --file
129130 archive.tar
130131 - name : Checkout example repository
131- uses : actions/checkout@v4.1.1
132+ uses : actions/checkout@v4.2.2
132133 with :
133134 repository : quickplates/helm-example
134135 token : ${{ secrets.EXAMPLES_ACCESS_TOKEN }}
0 commit comments