diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd42f154..890daac1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: os: [ubuntu-latest] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - run: docker build -t docker.pkg.github.com/maputnik/editor/editor:master . # build the editor @@ -51,7 +51,7 @@ jobs: node-version: [18.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} @@ -77,7 +77,7 @@ jobs: node-version: [18.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} @@ -115,7 +115,7 @@ jobs: id: go - name: Check out code into the Go module directory - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: repository: maputnik/desktop ref: master @@ -168,7 +168,7 @@ jobs: options: --shm-size=2gb steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: actions/cache@v1 with: path: ~/.npm diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ee8b519a..d0047d0c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -8,7 +8,7 @@ on: - 'v*' jobs: - # publish docker to github registry + # publish docker to GitHub registry deploy-docker: name: deploy/docker runs-on: ${{ matrix.os }} @@ -21,8 +21,7 @@ jobs: os: [ubuntu-latest] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u orangemug --password-stdin - run: docker build -t docker.pkg.github.com/maputnik/editor/editor:master . - run: docker push docker.pkg.github.com/maputnik/editor/editor:master -