diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e913d422..b95811ee 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -116,7 +116,7 @@ jobs: needs: publish steps: - uses: actions/checkout@v4 - - uses: docker/setup-qemu-action@v1 + - uses: docker/setup-qemu-action@v3 - run: | docker run --rm -v $(pwd):/tmp/project --entrypoint /bin/sh --platform linux/${{ matrix.arch }} node:16-alpine -c "\ apk add build-base git python3 py3-setuptools --update-cache && \ @@ -135,7 +135,7 @@ jobs: needs: publish steps: - uses: actions/checkout@v4 - - uses: docker/setup-qemu-action@v1 + - uses: docker/setup-qemu-action@v3 - run: | docker run --rm -v $(pwd):/tmp/project --entrypoint /bin/sh --platform linux/${{ matrix.arch }} node:16 -c "\ cd /tmp/project && \ diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml index a91b2e4c..6c014fad 100644 --- a/.github/workflows/bump-version.yml +++ b/.github/workflows/bump-version.yml @@ -17,11 +17,11 @@ jobs: name: Bump to a new version runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: token: ${{ secrets.PAT }} fetch-depth: 0 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: 16 - name: Configure user diff --git a/.github/workflows/update-sqlite.yml b/.github/workflows/update-sqlite.yml index d02a9602..341d8d68 100644 --- a/.github/workflows/update-sqlite.yml +++ b/.github/workflows/update-sqlite.yml @@ -18,11 +18,11 @@ jobs: ENV_YEAR: ${{ github.event.inputs.year }} ENV_VERSION: ${{ github.event.inputs.version }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: token: ${{ secrets.PAT }} fetch-depth: 0 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: 16 - name: Create new update branch @@ -35,7 +35,7 @@ jobs: - name: Download, compile and package SQLite run: npm run download - name: Push update branch - uses: stefanzweifel/git-auto-commit-action@v4 + uses: stefanzweifel/git-auto-commit-action@v5 with: commit_message: Update SQLite to version ${{ env.ENV_TRUE_VERSION }} branch: sqlite-update-${{ env.ENV_VERSION }}