Skip to content

Commit

Permalink
upgrade image
Browse files Browse the repository at this point in the history
  • Loading branch information
kiorky committed Oct 15, 2024
1 parent b19800b commit e95cc12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ env:
RELEASABLE_BRANCHES: "^(refs/heads/)?(master|main|workflows)$"
jobs:
r:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
env: {IMG: "${{matrix.IMG}}", DFILE: "${{matrix.DFILE}}", DPATH: "${{matrix.DPATH}}",
IMG_RELEASE: "${{matrix.IMG_RELEASE}}",}
steps:
Expand All @@ -22,7 +22,7 @@ jobs:
with: {username: "${{ secrets.DOCKER_HUB_USERNAME }}", password: "${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}"}
- name: Activate docker experimental
run: |-
sudo bash -exc "service docker stop;python -c \"d='/etc/docker/daemon.json';\
sudo bash -exc "if [ ! -e /etc/docker/daemon.json ];then mkdir /etc/docker||true;echo '{}' > /etc/docker/daemon.json;fi;service docker stop;python -c \"d='/etc/docker/daemon.json';\
import json;c=json.load(open(d));c['experimental']=True;\
open(d, 'w').write(json.dumps(c))\";systemctl restart docker"
- uses: actions/checkout@v3
Expand Down

0 comments on commit e95cc12

Please sign in to comment.