diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b5bab79..8ad029c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: persist-credentials: false - name: Set up Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20.x cache: 'yarn' @@ -45,7 +45,7 @@ jobs: - name: Push Docker Image to GitHub Packages run: | NEW_VERSION=$(node -p "require('./package.json').version") - docker tag osc ghcr.io/${{ github.repository_owner }}/osc:${NEW_VERSION} - docker push ghcr.io/${{ github.repository_owner }}/osc:${NEW_VERSION} + docker tag osc ghcr.io/${{ github.repository_owner }}/osc_controller:${NEW_VERSION} + docker push ghcr.io/${{ github.repository_owner }}/osc_controller:${NEW_VERSION} env: GHCR_PAT: ${{ secrets.GH_AUTH_TOKEN }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9d0c805..d778040 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -41,9 +41,9 @@ jobs: bundler-cache: true - name: Set up Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 19.x + node-version: 20.x cache: 'yarn' - name: Set up Yarn