Skip to content

Commit

Permalink
build(deps): bump actions/checkout from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and justinclift committed Dec 26, 2023
1 parent da2300c commit f7257cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down

2 comments on commit f7257cd

@justinclift
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There looks to be infrastructure problems with the Alpine mirror we've hard coded. It's throwing package errors in random places during the docker build phase of the Cypress testing, both here on GitHub and when I'm testing locally.

Things like this:

1255.8 (82/83) Installing nodejs (20.10.0-r1)
1308.1 ERROR: Failed to create usr/bin/node: Connection aborted
1308.1 ERROR: nodejs-20.10.0-r1: BAD signature

And this (on my local desktop):

(30/83) Installing go (1.21.5-r0)
(31/83) Installing libc-dev (0.7.2-r5)
ERROR: go-1.21.5-r0: remote server returned error (try 'apk update')

I'll remove the hard coded mirror entry, and see if that fixes things.

@justinclift
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removing the hard coded mirror entry seems to have fixed the problem, so I've pushed a commit to master with that fix.

The tests on that commit have passed too. 😄

Please sign in to comment.